diff options
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)) |