blackmagic-libre/Makefile

18 lines
256 B
Makefile
Raw Permalink Normal View History

2023-03-01 13:16:39 -07:00
# Makefile
all:
$(MAKE) clean
$(MAKE) -C src
mv src/*.pdf .
# ps2pdf breaks ToC and other internal links
# ps2pdf BlackmagicLibre.pdf BlackmagicLibre-web.pdf
cover:
$(MAKE) -C src cover
mv src/Cover.pdf .
clean:
rm -f *.pdf
$(MAKE) clean -C src