diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | libc/inet/rpc/Makefile | 2 | ||||
-rw-r--r-- | libc/inet/rpc/auth_unix.c | 3 | ||||
-rw-r--r-- | libc/misc/regex/Makefile | 11 |
4 files changed, 11 insertions, 7 deletions
@@ -21,7 +21,7 @@ # respective copyright holders. DIRS = error getent malloc misc regex stdio \ - string termios time sysdeps #rpc + string termios time sysdeps shm #rpc all: libc.a libc.a: headers subdirs diff --git a/libc/inet/rpc/Makefile b/libc/inet/rpc/Makefile index 907d55deb..cc6403648 100644 --- a/libc/inet/rpc/Makefile +++ b/libc/inet/rpc/Makefile @@ -42,8 +42,6 @@ all: $(COBJS) $(LIBC) $(LIBC): $(COBJS) $(AR) $(ARFLAGS) $(LIBC) $(COBJS) -$(COBJS): $(CSRC) - clean: rm -f *.[oa] *~ core diff --git a/libc/inet/rpc/auth_unix.c b/libc/inet/rpc/auth_unix.c index 87ff2b648..ffdfa11a0 100644 --- a/libc/inet/rpc/auth_unix.c +++ b/libc/inet/rpc/auth_unix.c @@ -44,6 +44,9 @@ static char sccsid[] = "@(#)auth_unix.c 1.19 87/08/11 Copyr 1984 Sun Micro"; */ #include <stdio.h> +#include <unistd.h> +#include <sys/types.h> +#include <string.h> #include <rpc/types.h> #include <rpc/xdr.h> diff --git a/libc/misc/regex/Makefile b/libc/misc/regex/Makefile index ad0745020..b8b38faa9 100644 --- a/libc/misc/regex/Makefile +++ b/libc/misc/regex/Makefile @@ -24,12 +24,15 @@ TOPDIR=../ include $(TOPDIR)Rules.make LIBC=$(TOPDIR)libc.a -OBJ=rx.o +CSRC=rx.c +COBJS=$(patsubst %.c,%.o, $(CSRC)) -all: $(OBJ) $(LIBC) +all: $(COBJS) $(LIBC) -$(LIBC): $(OBJ) - $(AR) $(ARFLAGS) $(LIBC) $(OBJ) +$(LIBC): $(COBJS) + $(AR) $(ARFLAGS) $(LIBC) $(COBJS) + +$(COBJS): Makefile clean: rm -f *.[oa] *~ core |