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.

Makefile 545B

1234567891011121314151617181920212223242526
  1. all: lcoretest
  2. nomessages:
  3. fpc -Sd -gl -dipv6 -dnomessages lcoretest.dpr
  4. lcoretest: *.pas *.inc lcoretest.dpr
  5. fpc -Sd -gl -dipv6 lcoretest.dpr
  6. clean:
  7. -rm *.o
  8. -rm *.ppu
  9. -rm *.exe
  10. -rm *.dcu
  11. -rm lcoretest
  12. date := $(shell date +%Y%m%d)
  13. zip:
  14. mkdir -p lcorewin32_$(date)
  15. cp -a *.pas lcorewin32_$(date)
  16. cp -a *.inc lcorewin32_$(date)
  17. cp -a *.dpr lcorewin32_$(date)
  18. cp -a Makefile lcorewin32_$(date)
  19. -rm ../lcorewin32_$(date).zip
  20. zip -r ../lcorewin32_$(date).zip lcorewin32_$(date)
  21. rm -rf lcorewin32_$(date)