home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / mgl11 / demo / makefile < prev    next >
Encoding:
Makefile  |  1994-03-09  |  1003 b   |  33 lines

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1993 SciTech Software.
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Generic makefile for the MGL demo program. Calls upon the
  7. #               appropriate include file to bring in the correct definitions
  8. #               for compiling with the sepecified compiler. By default
  9. #               Borland C++ 3.1 is assumed.
  10. #
  11. # $Id$
  12. #
  13. #############################################################################
  14.  
  15. !include "\makedefs\makedefs.def"
  16.  
  17. OBJECTS     = demo.obj main.obj explwind.obj titlwind.obj demoarea.obj  \
  18.               demowind.obj ffill.obj getopt.obj
  19.  
  20. LIBS        = mgraph.lib mvis.lib event.lib tech.lib vec_fl.lib sysinf.lib
  21.  
  22. demo.exe: $(OBJECTS)
  23.     $(CC) $(CC_FLAGS) @&&|
  24. $(OBJECTS)
  25. $(LIBS)
  26. |
  27.  
  28. ffill.obj: ..\examples\ffill.c
  29.     $(CC) $(CC_FLAGS) $(COMPILE_ONLY) ..\examples\ffill.c
  30.  
  31. !include "\makedefs\common.def"
  32.  
  33.