SNOUG/Makefile

12 lines
105 B
Makefile

# Makefile
all:
$(MAKE) clean
$(MAKE) -C src
mv src/*.pdf .
clean:
rm -f *.pdf
make clean -C src