blob: 46d7320f5f85a4a4712ce1d4f35de328142a95a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
CFLAGS = $(COPT) $(RPMCFLAGS) -I.
OBJS = bracket.o _collelem.o _collmult.o regcomp.o regdfa.o regerror.o regexec.o regfree.o regnfa.o regparse.o stubs.o
.c.o: ; $(CC) $(CFLAGS) -c $<
all: libuxre.a
libuxre.a: $(OBJS)
ar cr libuxre.a $(OBJS)
clean:
rm -f libuxre.a $(OBJS) core
|