Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 177B

1234567891011121314151617
  1. SAMPLES=lac2018.pdf
  2. all: $(SAMPLES)
  3. clean: cleantmp
  4. rm -f *.pdf
  5. cleantmp:
  6. rm -f *.aux
  7. rm -f *.bbl
  8. rm -f *.blg
  9. rm -f *.log
  10. %.pdf: %.tex
  11. pdflatex "$<"
  12. .PHONY:all clean