]>
Commit | Line | Data |
---|---|---|
1 | #------------------------------------------------------------------------- | |
2 | # | |
3 | # Makefile-- | |
4 | # Makefile for backend/regex | |
5 | # | |
6 | # IDENTIFICATION | |
7 | # $Header: /projects/cvsroot/pgsql-server/src/backend/regex/Makefile,v 1.20 2003/02/05 17:41:32 tgl Exp $ | |
8 | # | |
9 | #------------------------------------------------------------------------- | |
10 | ||
11 | subdir = src/backend/regex | |
12 | top_builddir = ../../.. | |
13 | include $(top_builddir)/src/Makefile.global | |
14 | ||
15 | OBJS = regcomp.o regerror.o regexec.o regfree.o | |
16 | ||
17 | all: SUBSYS.o | |
18 | ||
19 | SUBSYS.o: $(OBJS) | |
20 | $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS) | |
21 | ||
22 | # mark inclusion dependencies between .c files explicitly | |
23 | regcomp.o: regcomp.c regc_lex.c regc_color.c regc_nfa.c regc_cvec.c regc_locale.c | |
24 | ||
25 | regexec.o: regexec.c rege_dfa.c | |
26 | ||
27 | clean: | |
28 | rm -f SUBSYS.o $(OBJS) |