8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96add9 commit e8f9b6bCopy full SHA for e8f9b6b
src/interfaces/ecpg/preproc/Makefile
@@ -20,7 +20,11 @@ preproc.c preproc.h: preproc.y
20
mv y.tab.h preproc.h
21
22
clean:
23
- rm -f *.o core a.out ecpg$(X) *~ *.output *.tab.?
+ rm -f *.o core a.out ecpg$(X) *~ *.output
24
+# And the garbage that might have been left behind by partial build:
25
+ rm -f y.tab.c y.tab.h lex.yy.c
26
+# make clean does not remove preproc.c, preproc.h, pgc.c since we want
27
+# to ship those files in the distribution, for people with inadequate tools.
28
29
install: all
30
$(INSTALL) $(INSTL_EXE_OPTS) ecpg$(X) $(DESTDIR)$(BINDIR)
0 commit comments