* Convert the rest of the already existing build system to Automake

* Add new autoconf macros


git-svn-id: https://www.dynare.org/svn/dynare/trunk@2914 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2009-09-10 09:50:58 +00:00
parent 65d7779d21
commit dd947fb35f
2 changed files with 14 additions and 14 deletions

14
Makefile.am Normal file
View File

@ -0,0 +1,14 @@
if HAVE_PDFLATEX
all-local: macroprocessor.pdf
endif
SRC = macroprocessor.tex old-design.pdf new-design.pdf
EXTRA_DIST = $(SRC)
macroprocessor.pdf: $(SRC)
$(PDFLATEX) macroprocessor
$(PDFLATEX) macroprocessor
clean-local:
rm -f macroprocessor.pdf *.toc *.aux *.log *.nav *.snm *.vrb *.out *~

View File

@ -1,14 +0,0 @@
PDFLATEX = @PDFLATEX@
macroprocessor.pdf: macroprocessor.tex old-design.pdf new-design.pdf
ifdef PDFLATEX
$(PDFLATEX) macroprocessor
$(PDFLATEX) macroprocessor
endif
clean:
rm -f macroprocessor.pdf *.toc *.aux *.log *.nav *.snm *.vrb *.out *~
.PHONY: clean
Makefile: Makefile.in ../../config.status
cd ../.. && ./config.status