home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-09 | 740 b | 26 lines |
- #############################################################################
- #
- # Copyright (C) 1993 SciTech Software
- # All rights reserved.
- #
- # Descripton: Symantec C++ 6.1 makefile for the MGL examples.
- #
- # $Id: makefile.sc 1.1 1994/03/09 08:00:42 kjb Exp $
- #
- #############################################################################
-
- CC = sc # Name of C compiler
- CC_FLAGS = /D__MSDOS__ /D__SYMC__ -ml
-
- .c.obj:
- $(CC) $(CC_FLAGS) -c $<
-
- OBJS = mgldemo.obj ffill.obj getopt.obj
-
- mgldemo.exe: $(OBJS)
- $(CC) $(CC_FLAGS) $(OBJS) mgraph.lib
-
- mgldemo.obj: mgldemo.c
- $(CC) $(CC_FLAGS) /DFLOODFILL_DEMO /c mgldemo.c
-
-