summaryrefslogtreecommitdiff
path: root/libc/misc/regex/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/regex/Makefile')
-rw-r--r--libc/misc/regex/Makefile37
1 files changed, 28 insertions, 9 deletions
diff --git a/libc/misc/regex/Makefile b/libc/misc/regex/Makefile
index c6c8d8e52..ad0745020 100644
--- a/libc/misc/regex/Makefile
+++ b/libc/misc/regex/Makefile
@@ -1,17 +1,36 @@
+# Makefile for uCLibc
+#
+# Copyright (C) 2000 by Lineo, inc.
+#
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU Library General Public License as published by the Free
+# Software Foundation; either version 2 of the License, or (at your option) any
+# later version.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+# Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# Derived in part from the Linux-8086 C library, the GNU C Library, and several
+# other sundry sources. Files within this library are copyright by their
+# respective copyright holders.
+
TOPDIR=../
include $(TOPDIR)Rules.make
-
-LIBC=../libc.a
+LIBC=$(TOPDIR)libc.a
OBJ=rx.o
-all: $(LIBC)
+all: $(OBJ) $(LIBC)
-$(LIBC): $(LIBC)($(OBJ))
-
-$(LIBC)(rx.o): rx.c
- $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
- $(AR) $(ARFLAGS) $@ $*.o
+$(LIBC): $(OBJ)
+ $(AR) $(ARFLAGS) $(LIBC) $(OBJ)
clean:
- rm -f libc.a *.o core mon.out timer.t.h dMakefile dtr try timer
+ rm -f *.[oa] *~ core
+