home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-09 | 739 b | 26 lines |
- #############################################################################
- #
- # Copyright (C) 1993 SciTech Software
- # All rights reserved.
- #
- # Descripton: Microsoft C 6.0 makefile for the MGL examples.
- #
- # $Id: makefile.msc 1.1 1994/03/09 08:00:39 kjb Exp $
- #
- #############################################################################
-
- CC = cl # Name of C compiler
- CC_FLAGS = /D__MSDOS__ /D__MSC__ /AL
-
- .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
-
-