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.

17 lines
223 B

2 months ago
  1. # Programs
  2. TYPST = typst
  3. RM = rm -f --
  4. OPEN = xdg-open
  5. .PHONY: all clean
  6. all: main.pdf
  7. clean:
  8. $(RM) main.pdf
  9. main.pdf: annwan-grammar.typ main.typ dictionnary.yml
  10. $(TYPST) c main.typ
  11. open: main.pdf
  12. $(OPEN) main.pdf