Makefile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # $Id$
  3. # Copyright (c) 1998 by the Free Pascal Development Team
  4. #
  5. # Makefile for demos
  6. #
  7. # See the file COPYING.FPC, included in this distribution,
  8. # for details about the copyright.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. #
  14. #####################################################################
  15. # Defaults
  16. #####################################################################
  17. # Where are the files located
  18. MAKEFILEFPC=makefile.fpc
  19. # Where need we to place the executables/ppu/objects
  20. TARGETDIR=.
  21. #####################################################################
  22. # Real targets
  23. #####################################################################
  24. UNITOBJECTS=
  25. EXEOBJECTS=eratos qsort hello blackbox magic
  26. ifeq ($(OS_TARGET),win32)
  27. override EXEOBJECTS+=win32/winhello
  28. else
  29. override EXEOBJECTS+=mandel lines
  30. endif
  31. #####################################################################
  32. # Include default makefile
  33. #####################################################################
  34. include $(MAKEFILEFPC)
  35. #####################################################################
  36. # Dependencies
  37. #####################################################################
  38. #
  39. # $Log$
  40. # Revision 1.2 1998-12-20 22:22:09 peter
  41. # * updates
  42. #
  43. # Revision 1.3 1998/12/12 19:14:42 peter
  44. # + DEFAULTUNITS to have a make all only compile the units
  45. #
  46. #