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

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1993 SciTech Software
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Microsoft C 6.0 makefile for the MGL examples.
  7. #
  8. # $Id: makefile.msc 1.1 1994/03/09 08:00:39 kjb Exp $
  9. #
  10. #############################################################################
  11.  
  12. CC              = cl                # Name of C compiler
  13. CC_FLAGS        = /D__MSDOS__ /D__MSC__ /AL
  14.  
  15. .c.obj:
  16.     $(CC) $(CC_FLAGS) /c $<
  17.      
  18. OBJS    = mgldemo.obj ffill.obj getopt.obj
  19.  
  20. mgldemo.exe: $(OBJS)
  21.     $(CC) $(CC_FLAGS) $(OBJS) mgraph.lib
  22.  
  23. mgldemo.obj: mgldemo.c
  24.     $(CC) $(CC_FLAGS) /DFLOODFILL_DEMO /c mgldemo.c
  25.  
  26.