diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-09 06:39:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-09 06:39:19 +0000 |
commit | f3a9360625bca4fb0b5fe9730d6e25431ac4704b (patch) | |
tree | 9de32b51a64464128da7d908a10378369f739a02 /libc/misc/regex/Makefile | |
parent | 283f7172a1d7f3e42a38747f7a9b83bfc04c5238 (diff) |
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
Diffstat (limited to 'libc/misc/regex/Makefile')
-rw-r--r-- | libc/misc/regex/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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 |