19 |
|
|
20 |
########################################################################## |
########################################################################## |
21 |
|
|
22 |
OBJ = maketables.o study.o pcre.o |
OBJ = maketables.o get.o study.o pcre.o |
23 |
|
|
24 |
all: libpcre.a libpcreposix.a pcretest pgrep |
all: libpcre.a libpcreposix.a pcretest pgrep |
25 |
|
|
27 |
$(CC) $(CFLAGS) -o pgrep pgrep.o libpcre.a |
$(CC) $(CFLAGS) -o pgrep pgrep.o libpcre.a |
28 |
|
|
29 |
pcretest: libpcre.a libpcreposix.a pcretest.o |
pcretest: libpcre.a libpcreposix.a pcretest.o |
30 |
$(CC) $(CFLAGS) -o pcretest pcretest.o libpcre.a libpcreposix.a |
$(PURIFY) $(CC) $(CFLAGS) -o pcretest pcretest.o libpcre.a libpcreposix.a |
31 |
|
|
32 |
libpcre.a: $(OBJ) |
libpcre.a: $(OBJ) |
33 |
/bin/rm -f libpcre.a |
-rm -f libpcre.a |
34 |
$(AR) libpcre.a $(OBJ) |
$(AR) libpcre.a $(OBJ) |
35 |
$(RANLIB) libpcre.a |
$(RANLIB) libpcre.a |
36 |
|
|
37 |
libpcreposix.a: pcreposix.o |
libpcreposix.a: pcreposix.o |
38 |
/bin/rm -f libpcreposix.a |
-rm -f libpcreposix.a |
39 |
$(AR) libpcreposix.a pcreposix.o |
$(AR) libpcreposix.a pcreposix.o |
40 |
$(RANLIB) libpcreposix.a |
$(RANLIB) libpcreposix.a |
41 |
|
|
48 |
maketables.o: maketables.c pcre.h internal.h Makefile |
maketables.o: maketables.c pcre.h internal.h Makefile |
49 |
$(CC) -c $(CFLAGS) maketables.c |
$(CC) -c $(CFLAGS) maketables.c |
50 |
|
|
51 |
|
get.o: get.c pcre.h internal.h Makefile |
52 |
|
$(CC) -c $(CFLAGS) get.c |
53 |
|
|
54 |
study.o: study.c pcre.h internal.h Makefile |
study.o: study.c pcre.h internal.h Makefile |
55 |
$(CC) -c $(CFLAGS) study.c |
$(CC) -c $(CFLAGS) study.c |
56 |
|
|
62 |
|
|
63 |
# An auxiliary program makes the default character table source |
# An auxiliary program makes the default character table source |
64 |
|
|
65 |
chartables.c: deftables |
chartables.c: dftables |
66 |
./deftables >chartables.c |
./dftables >chartables.c |
67 |
|
|
68 |
deftables: deftables.c maketables.c pcre.h internal.h Makefile |
dftables: dftables.c maketables.c pcre.h internal.h Makefile |
69 |
$(CC) -o deftables $(CFLAGS) deftables.c |
$(CC) -o dftables $(CFLAGS) dftables.c |
70 |
|
|
71 |
# We deliberately omit deftables and chartables.c from 'make clean'; once made |
# We deliberately omit dftables and chartables.c from 'make clean'; once made |
72 |
# chartables.c shouldn't change, and if people have edited the tables by hand, |
# chartables.c shouldn't change, and if people have edited the tables by hand, |
73 |
# you don't want to throw them away. |
# you don't want to throw them away. |
74 |
|
|
75 |
clean:; /bin/rm -f *.o *.a pcretest pgrep |
clean:; -rm -f *.o *.a pcretest pgrep |
76 |
|
|
77 |
runtest: all |
runtest: all |
78 |
./RunTest |
./RunTest |