diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-05 19:23:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-05 19:23:36 +0000 |
commit | 9281d180d13057917f618c35ef7433d2e4d4dd86 (patch) | |
tree | b497158acdc1a81b93b938a2f76376c88bc7799b /libc/sysdeps/linux/Makefile | |
parent | 775622914fa0a2814c705d25b1a3929002c5c785 (diff) |
Completely rearchitected the sysdeps directory.
-Erik
Diffstat (limited to 'libc/sysdeps/linux/Makefile')
-rw-r--r-- | libc/sysdeps/linux/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/Makefile b/libc/sysdeps/linux/Makefile new file mode 100644 index 000000000..a81bb9a21 --- /dev/null +++ b/libc/sysdeps/linux/Makefile @@ -0,0 +1,20 @@ +# Figure out what arch to build... + +ARCH = $(shell uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/') + +all: $(ARCH) common + +$(ARCH): dummy + echo Building for ARCH=$(ARCH) + make -C $(ARCH) + +common: dummy + echo Building common stuff + make -C common + +clean: + rm -f *.o + make -C common clean + make -C $(ARCH) clean + +.PHONY: dummy |