Makefile-no-regen 217 B

12345678910111213
  1. .PHONY: distclean clean install
  2. all: Makefile.pkg
  3. Makefile.pkg: Makefile.fpc
  4. fpcmake -Tall -s -o Makefile.pkg Makefile.fpc
  5. distclean:
  6. echo Nothing to do.
  7. clean:
  8. echo Nothing to do.
  9. install:
  10. echo Nothing to do.