*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@220 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-02-11 05:38:27 +00:00
commit 81728456d5

View file

@ -0,0 +1,22 @@
SRCS = frame.c color.c plot2d.c plot3d.c font.c pixmap.c matrix.c gif.c
OBJS = $(SRCS:.c=.obj)
# Location of the Visual C++ tools (32 bit assumed)
TOOLS = $(MSVCDIR)
TARGET = gifplot.lib
CC = cl.exe
LINK = link.exe
INCLUDE32 = -I"$(TOOLS)\include"
MACHINE = IX86
INCLUDES = -I..\Include
LIB = lib.exe
# C compiler flags
CFLAGS = /Z7 /Od /WX /c /W1 /nologo
gifplot::
$(CC) $(CFLAGS) $(INCLUDE32) $(INCLUDES) $(SRCS) /DEBUG
$(LIB) $(OBJS) /out:..\gifplot.lib