diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-05 19:25:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-05 19:25:08 +0000 |
commit | ca9bd30c262ed788486c1d367ad40550e5d806c2 (patch) | |
tree | daf86037f4b4d34e91c6f147e287fb26694df103 /libc/stdlib/Makefile | |
parent | 9281d180d13057917f618c35ef7433d2e4d4dd86 (diff) |
Many bugfixes, header cleanups, etc. Added abort and glob.
It is getting closer...
-Erik
Diffstat (limited to 'libc/stdlib/Makefile')
-rw-r--r-- | libc/stdlib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile index 61a82a2d6..2c2d0f5fb 100644 --- a/libc/stdlib/Makefile +++ b/libc/stdlib/Makefile @@ -17,7 +17,8 @@ EOBJ=on_exit.o atexit.o __do_exit.o exit.o GOBJ=atoi.o atol.o ltoa.o ltostr.o \ ctype.o qsort.o bsearch.o rand.o lsearch.o getopt.o \ - itoa.o strtol.o crypt.o sleep.o mkstemp.o mktemp.o + glob.o fnmatch.o itoa.o strtol.o crypt.o sleep.o mkstemp.o \ + mktemp.o UOBJ=getenv.o putenv.o popen.o system.o getcwd.o setenv.o \ execl.o execv.o execlp.o execvp.o execvep.o @@ -31,7 +32,6 @@ OBJ=$(MOBJ) $(EOBJ) $(GOBJ) $(UOBJ) #endif all: $(LIBC) - @$(RM) $(OBJ) $(LIBC): $(LIBC)($(OBJ)) |