SNOUG/Makefile

18 lines
236 B
Makefile
Raw Permalink Normal View History

2022-08-23 12:15:31 -06:00
# Makefile
all:
$(MAKE) clean
$(MAKE) -C src
mv src/*.pdf .
# ps2pdf breaks ToC and other internal links
# ps2pdf SNOUG.pdf SNOUG-web.pdf
2022-08-23 12:15:31 -06:00
2022-09-04 11:16:10 -06:00
cover:
$(MAKE) -C src cover
mv src/Cover.pdf .
2022-08-23 12:15:31 -06:00
clean:
rm -f *.pdf
$(MAKE) clean -C src
2022-08-23 12:15:31 -06:00