diff options
author | David McCullough <davidm@snapgear.com> | 2001-01-29 14:36:00 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2001-01-29 14:36:00 +0000 |
commit | 25b20c514618c2df1c67fc8defabb220471a5ed0 (patch) | |
tree | 9afa34c2a31d20711e2bfcb172d52c708566b18e | |
parent | 086815d394e998eddda65c4800accdac1e2ff79b (diff) |
DIRS was not set in this makefile and could be inherited from the
environment.
-rw-r--r-- | libc/unistd/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/unistd/Makefile b/libc/unistd/Makefile index 6873102b0..f69d9a453 100644 --- a/libc/unistd/Makefile +++ b/libc/unistd/Makefile @@ -23,6 +23,7 @@ TOPDIR=../ include $(TOPDIR)Rules.mak LIBC=$(TOPDIR)libc.a +DIRS:= CSRC=execl.c execlp.c execv.c execvep.c execvp.c getcwd.c getopt.c \ sleep.c getpass.c sysconf_src.c @@ -100,6 +101,9 @@ $(patsubst %, _dir_%, $(DIRS)) : dummy $(patsubst %, _dirclean_%, $(DIRS)) : dummy $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean +.PHONY: dummy +dummy: + clean: rm -f *.[oa] *~ core gen_sysconf sysconf_*.c |