*** 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:
parent
a6743ff85a
commit
81728456d5
1 changed files with 22 additions and 0 deletions
22
Examples/GIFPlot/Lib/makefile.msc
Normal file
22
Examples/GIFPlot/Lib/makefile.msc
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue