diff options
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 0000000..3881833 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,7 @@ +.PHONY: libc +libc: + cd libc; make CC=$(CC) + +.PHONY: clean +clean: + cd libc/; make clean |