summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-09 20:06:30 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-09 20:06:30 +0000
commitc1fe19d4c1db610692365472a90f4661e48449c1 (patch)
treed0b0219ffca3c4c4256f55c4aea4513e43d6aecd /Makefile
parent9efafb8bbc7408b04643dcd53825d971577b4d9d (diff)
Bug ugly formatting update
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dd22dd58b..88fbc0c19 100644
--- a/Makefile
+++ b/Makefile
@@ -20,16 +20,21 @@
# other sundry sources. Files within this library are copyright by their
# respective copyright holders.
-DIRS = error getent malloc misc regex stdio \
+#MALLOC = malloc
+MALLOC = malloc-simple
+
+DIRS = error getent $(MALLOC) misc regex stdio \
string termios time sysdeps shm #rpc
all: libc.a
-libc.a: headers subdirs
+libc.a: halfclean headers subdirs
@echo
@echo Finally finished compiling...
@echo
- $(CROSS)ranlib $@
+ $(CROSS)ranlib libc.a
+halfclean:
+ @rm -f libc.a
headers: dummy
@if [ ! -L "include/asm" ]; then ln -s /usr/include/asm include/asm ; fi