summaryrefslogtreecommitdiff
path: root/softcore/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'softcore/makefile')
-rw-r--r--softcore/makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/softcore/makefile b/softcore/makefile
new file mode 100644
index 000000000000..d686f17a62fb
--- /dev/null
+++ b/softcore/makefile
@@ -0,0 +1,11 @@
+SOURCES = softcore.fr ifbrack.fr prefix.fr ficl.fr jhlocal.fr marker.fr oo.fr classes.fr string.fr ficllocal.fr fileaccess.fr
+
+../softcore.c: makesoftcore $(SOURCES)
+ makesoftcore $(SOURCES)
+
+makesoftcore: makesoftcore.c ../lzcompress.c ../bit.c
+ $(CC) $(CFLAGS) $(CPPFLAGS) -I.. -o makesoftcore makesoftcore.c ../lzcompress.c ../bit.c
+
+clean:
+ - rm ../softcore.c *.o makesoftcore
+