]> git.sur5r.net Git - cc65/commitdiff
Moved the 'runtime' files from 'geos-cbm' to 'geos-common' which are believed to...
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 4 Feb 2012 19:55:02 +0000 (19:55 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 4 Feb 2012 19:55:02 +0000 (19:55 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5445 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/geos-cbm/Makefile
libsrc/geos-cbm/runtime/Makefile [deleted file]
libsrc/geos-cbm/runtime/call.s [deleted file]
libsrc/geos-common/Makefile
libsrc/geos-common/runtime/Makefile [new file with mode: 0644]
libsrc/geos-common/runtime/call.s [new file with mode: 0644]

index 314040fec8756a5b7e5fcaa3d2d7e595cbe05036..1c37df814b484d1251292492a3b07f7c68d29a46 100644 (file)
@@ -50,7 +50,6 @@ DIRS =        common          \
        disk            \
        file            \
        memory          \
-       runtime         \
        system
 
 #--------------------------------------------------------------------------
diff --git a/libsrc/geos-cbm/runtime/Makefile b/libsrc/geos-cbm/runtime/Makefile
deleted file mode 100644 (file)
index bcbcbb0..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#
-# makefile for CC65 runtime library
-#
-
-#--------------------------------------------------------------------------
-# Object files
-
-S_OBJS +=      call.o
diff --git a/libsrc/geos-cbm/runtime/call.s b/libsrc/geos-cbm/runtime/call.s
deleted file mode 100644 (file)
index de457e2..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-;
-; Maciej 'YTM/Elysium' Witkowiak <ytm@elysium.pl>
-; 23.12.2002
-;
-; CC65 runtime: call function via pointer in ax
-;
-
-        .include "jumptab.inc"
-
-       .export         callax
-
-callax = CallRoutine
index 746205078c71e1a68af2b8e38187ab22b92c0604..7bdc9a4bf1a79292c617b9fd73ea02fbc54bb2bc 100644 (file)
@@ -35,7 +35,8 @@ DIRS =        dlgbox          \
        memory          \
        menuicon        \
        mousesprite     \
-       process
+       process         \
+       runtime
 
 #--------------------------------------------------------------------------
 # Directives
diff --git a/libsrc/geos-common/runtime/Makefile b/libsrc/geos-common/runtime/Makefile
new file mode 100644 (file)
index 0000000..bcbcbb0
--- /dev/null
@@ -0,0 +1,8 @@
+#
+# makefile for CC65 runtime library
+#
+
+#--------------------------------------------------------------------------
+# Object files
+
+S_OBJS +=      call.o
diff --git a/libsrc/geos-common/runtime/call.s b/libsrc/geos-common/runtime/call.s
new file mode 100644 (file)
index 0000000..de457e2
--- /dev/null
@@ -0,0 +1,12 @@
+;
+; Maciej 'YTM/Elysium' Witkowiak <ytm@elysium.pl>
+; 23.12.2002
+;
+; CC65 runtime: call function via pointer in ax
+;
+
+        .include "jumptab.inc"
+
+       .export         callax
+
+callax = CallRoutine