mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
Convert some of the READMEs to Markdown, which is now more common, and nicely displayed in some git hosting services. Add missing READMEs and Makefiles. Generate XML, HTML and Dot files. Be sure to ship the test files. Complete CLEANFILES to remove all generated files. * examples/calc++: Move into... * examples/c++: here. * examples/mfcalc, examples/rpcalc: Move into... * examples/c: here. * examples/README.md, examples/c++/calc++/Makefile, examples/c/local.mk, * examples/c/mfcalc/Makefile, examples/c/rpcalc/Makefile, * examples/d/README.md, examples/java/README.md: New files. * examples/test (medir): Be robust to deeper directory nesting.
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
## Copyright (C) 2018 Free Software Foundation, Inc.
|
|
##
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
ddir = $(docdir)/%D%
|
|
|
|
## ------ ##
|
|
## Calc. ##
|
|
## ------ ##
|
|
|
|
if ENABLE_D
|
|
check_SCRIPTS += %D%/calc
|
|
TESTS += %D%/calc.test
|
|
endif
|
|
EXTRA_DIST += %D%/calc.test
|
|
|
|
%D%/calc.d: %D%/calc.y $(BISON_IN) $(dist_pkgdata_DATA)
|
|
$(AM_V_GEN)$(MKDIR_P) %D%
|
|
$(AM_V_at)$(BISON) $< -o $@
|
|
|
|
%D%/calc: %D%/calc.d
|
|
$(AM_V_GEN) $(DC) $(DCFLAGS) -of$@ $<
|
|
|
|
dist_d_DATA = %D%/calc.y %D%/Makefile %D%/README.md
|
|
CLEANFILES += %D%/calc %D%/calc.[do]
|