Makefile 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/bin/make -f
  2. # file: scripts/Makefile
  3. # ====================================================================
  4. # environment definitions;
  5. # --------------------------------------------------------------------
  6. include ../make.def
  7. # ====================================================================
  8. #
  9. # --------------------------------------------------------------------
  10. TRASH=t t.* *~ *.[0-9][0-9][0-9]
  11. FILES=*.c *.h *.mak Makefile Makefile.*
  12. TOOLS=
  13. PAGES=fdm.1
  14. # ====================================================================
  15. #
  16. # --------------------------------------------------------------------
  17. all compile:
  18. install:
  19. scripts:
  20. manuals:
  21. install -m ${MAN_PERM} -o ${OWNER} -g ${GROUP} ${PAGES} ${MAN}
  22. library:
  23. uninstall:
  24. clean:
  25. rm -f ${TOOLS} ${TRASH}
  26. check:
  27. # ${SHELL} scripts.sh
  28. ignore:
  29. echo ${TOOLS} | tr ' ' '\n' > .gitignore
  30. # ====================================================================
  31. #
  32. # --------------------------------------------------------------------