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.

18 lines
177B

  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