1include Makefile.$(OS)
2
3test-compile:
4	@$(CC) $(CFLAGS) $(PCREINC) -o test-pcre.o -c test-pcre.c
5
6test-link:
7	@$(CC) $(CFLAGS) $(PCRELIB) -o test-pcre test-pcre.o -lpcre
8
9clean:
10	@rm -f test-pcre.o test-pcre
11
12