summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-05 05:10:27 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-05 05:10:27 +0000
commit8187b0ccda766ff2000e954f01ba918faefc05d2 (patch)
tree7dfa36055a9689a672c14185d37a7396e5746b4b /Makefile
parent6ba17041381afeb8c1274cce4c6ffebda0253328 (diff)
Major update to string handling. strcmp and friends were horribly
broken. They now test out as working properly. -Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ef5e37c85..f161f2b4c 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ DIRS = error getent malloc misc regex stdio \
string termios time sysdeps #rpc
all: libc.a
-libc.a: subdirs headers
+libc.a: headers subdirs
@echo
@echo Finally finished compiling...
@echo
@@ -32,9 +32,9 @@ libc.a: subdirs headers
headers: dummy
- @if [ ! -L "include/asm" ]; then ln -s /usr/src/linux/include/asm include/asm ; fi
- @if [ ! -L "include/net" ]; then ln -s /usr/src/linux/include/net include/net ; fi
- @if [ ! -L "include/linux" ]; then ln -s /usr/src/linux/include/linux include/linux ; fi
+ @if [ ! -L "include/asm" ]; then ln -s /usr/include/asm include/asm ; fi
+ @if [ ! -L "include/net" ]; then ln -s /usr/include/net include/net ; fi
+ @if [ ! -L "include/linux" ]; then ln -s /usr/include/linux include/linux ; fi
tags:
ctags -R