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

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1993 SciTech Software
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Symantec C++ 6.1 makefile for the MGL examples.
  7. #
  8. # $Id: makefile.sc 1.1 1994/03/09 08:00:42 kjb Exp $
  9. #
  10. #############################################################################
  11.  
  12. CC              = sc                # Name of C compiler
  13. CC_FLAGS        = /D__MSDOS__ /D__SYMC__ -ml
  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.