Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cf11642

Browse files
committed
Undo collateral damage from recent patch: Makefile had
lost most of target list and thus 'make clean' didn't clean up very well.
1 parent bbf3748 commit cf11642

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

contrib/spi/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ ifdef REFINT_VERBOSE
99
CFLAGS+= -DREFINT_VERBOSE
1010
endif
1111

12-
TARGETS= refint$(DLSUFFIX) refint.sql
12+
TARGETS= refint$(DLSUFFIX) refint.sql \
13+
timetravel$(DLSUFFIX) timetravel.sql \
14+
autoinc$(DLSUFFIX) autoinc.sql \
15+
moddatetime$(DLSUFFIX) moddatetime.sql \
16+
insert_username$(DLSUFFIX) insert_username.sql
1317

1418
CLEANFILES+= $(TARGETS)
1519

@@ -21,5 +25,5 @@ all:: $(TARGETS)
2125
sed -e "s:_OBJWD_:$$C:g" \
2226
-e "s:_DLSUFFIX_:$(DLSUFFIX):g" < $< > $@
2327

24-
clean:
25-
rm -f $(TARGETS)
28+
clean:
29+
rm -f $(TARGETS) *.o

0 commit comments

Comments
 (0)