1
0

Makefile 228 B

12345678910111213141516
  1. NAME=autopostgresqlbackup
  2. SECTION=8
  3. all: man
  4. man: ${NAME}.${SECTION}
  5. ${NAME}.${SECTION}: Documentation.md
  6. pandoc \
  7. --standalone \
  8. --to man \
  9. Documentation.md \
  10. -o ${NAME}.${SECTION}
  11. clean:
  12. rm -f ${NAME}.${SECTION}