diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-03-08 07:36:55 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-06-15 17:49:42 -0400 |
commit | 84e7552c98096930cef9ed2d1d91f3d8abceeb4e (patch) | |
tree | 62994b9d70b8f3a17f729c0b7189344261e569ee | |
parent | 1a25a116e87e8cde709cf1b810ac2371ac485280 (diff) |
config: let Automake handle Lex and Yacc dist and cleaning
MAINTAINERCLEANFILES are not needed for lex and yacc.
Only gram.h needs to be specified as built source.
Automake generates all the rules to handle building,
distribution and cleaning.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 0777dc4..dfe2a8a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -43,11 +43,8 @@ xgc_SOURCES = \ text.c \ xgc.h -BUILT_SOURCES = gram.h gram.c lex.c +BUILT_SOURCES = gram.h MAINTAINERCLEANFILES = ChangeLog INSTALL -MAINTAINERCLEANFILES += $(BUILT_SOURCES) - -gram.h: gram.c # App default files |