From f3a9360625bca4fb0b5fe9730d6e25431ac4704b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 9 Jul 2000 06:39:19 +0000 Subject: Add in a bunch of junk. Busybox now compiles (except for mkfs.minix and fsck.minix). Of course, it doesn't link yet due to missing functions, but hey... At least it is now easy to see what isn't working. :-) -Erik --- libc/misc/regex/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 libc/misc/regex/Makefile (limited to 'libc/misc/regex/Makefile') diff --git a/libc/misc/regex/Makefile b/libc/misc/regex/Makefile new file mode 100644 index 000000000..c6c8d8e52 --- /dev/null +++ b/libc/misc/regex/Makefile @@ -0,0 +1,17 @@ +TOPDIR=../ +include $(TOPDIR)Rules.make + +LIBC=../libc.a + +OBJ=rx.o + +all: $(LIBC) + +$(LIBC): $(LIBC)($(OBJ)) + +$(LIBC)(rx.o): rx.c + $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o + $(AR) $(ARFLAGS) $@ $*.o + +clean: + rm -f libc.a *.o core mon.out timer.t.h dMakefile dtr try timer -- cgit v1.2.3