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

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1993 SciTech Software.
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Generic makefile for the MGL examples. 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: makefile 1.1 1994/03/09 08:00:35 kjb Exp $
  12. #
  13. #############################################################################
  14.  
  15. !include "\makedefs\makedefs.def"
  16.  
  17. OBJS    = main.obj getopt.obj
  18.  
  19. all:    mgldemo.exe ffilltst.exe
  20.  
  21. mgldemo.obj: mgldemo.c
  22.     $(CC) $(CC_FLAGS) /DFLOODFILL_DEMO /c mgldemo.c
  23.  
  24. mgldemo.exe: mgldemo.obj ffill.obj getopt.obj
  25.     $(CC) $(CC_FLAGS) mgldemo.obj ffill.obj getopt.obj mgraph.lib
  26.  
  27. ffilltst.exe: ffilltst.obj ffill.obj $(OBJS)
  28.     $(CC) $(CC_FLAGS) ffilltst.obj ffill.obj $(OBJS) mgraph.lib ztimer_l.lib
  29.  
  30. !include "\makedefs\common.def"
  31.  
  32.