1
0
Fork 0
arangodb/m4/Makefile.bison

41 lines
1.5 KiB
Makefile

# -*- mode: Makefile; -*-
################################################################################
## --SECTION-- PARSER
################################################################################
################################################################################
### @brief built sources
################################################################################
BUILT_SOURCES += $(BISON_FILES) $(BISONXX_FILES)
################################################################################
### @brief BISON
################################################################################
%.c: %.y
@top_srcdir@/config/bison-c.sh $(BISON) $@ $<
################################################################################
### @brief BISON++
################################################################################
%.cpp: %.yy
@top_srcdir@/config/bison-c++.sh $(BISON) $@ $<
################################################################################
### @brief CLEANUP
################################################################################
CLEANUP += $(BISON_FILES) $(BISONXX_FILES)
################################################################################
## --SECTION-- END-OF-FILE
################################################################################
## Local Variables:
## mode: outline-minor
## outline-regexp: "^\\(### @brief\\|## --SECTION--\\|# -\\*- \\)"
## End: