summaryrefslogtreecommitdiffstats
path: root/makefile-djb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile-djb/Makefile')
-rw-r--r--makefile-djb/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/makefile-djb/Makefile b/makefile-djb/Makefile
new file mode 100644
index 0000000..12bf960
--- /dev/null
+++ b/makefile-djb/Makefile
@@ -0,0 +1,26 @@
+DIR=.
+
+include Makefile_base
+
+clib.o: compile clib.h clib.c
+ @./compile clib.c
+
+libclib.a: load clib.o
+ @./load s libclib.a clib.o
+
+main.o: compile clib.h main.c
+ @./compile main.c
+
+main: load libclib.a main.o
+ @./load c main libclib.a
+
+# HIGH LEVEL SPECIFIC TARGETS
+
+clean : cleanstd
+ @rm -f main *.o *.so* *~
+
+arch: buildarch
+ -@./buildarch test
+
+build: main
+