Makefile 588 B

123456789101112131415161718192021222324
  1. #############################################################################
  2. # Root Makefile for Debian Packaging
  3. # Copyright (c) 1998 by the Free Pascal Development Team
  4. #############################################################################
  5. RELEASE=1
  6. export RELEASE
  7. all:
  8. make -C compiler cycle
  9. make -C rtl/linux all
  10. make -C rtl/utils all
  11. install:
  12. make -C compiler installlib
  13. make -C rtl/linux install
  14. make -C rtl/linux libinstall PPUMOVE=../utils/ppumove
  15. make -C rtl/utils install
  16. clean:
  17. make -C compiler clean
  18. make -C rtl/utils clean
  19. make -C rtl/linux libsclean