/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/GIFPlot/Lib/makefile.msc
Unknown | 22 lines | 16 code | 6 blank | 0 comment | 0 complexity | 3acd3ffe0b580c1570b7e3a0976fc06b MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1SRCS = frame.c color.c plot2d.c plot3d.c font.c pixmap.c matrix.c gif.c
2OBJS = $(SRCS:.c=.obj)
3
4# Location of the Visual C++ tools (32 bit assumed)
5
6TOOLS = $(MSVCDIR)
7TARGET = gifplot.lib
8CC = cl.exe
9LINK = link.exe
10INCLUDE32 = -I"$(TOOLS)\include"
11MACHINE = IX86
12INCLUDES = -I..\Include
13LIB = lib.exe
14
15# C compiler flags
16
17CFLAGS = /Z7 /Od /WX /c /W1 /nologo
18
19gifplot::
20 $(CC) $(CFLAGS) $(INCLUDE32) $(INCLUDES) $(SRCS) /DEBUG
21 $(LIB) $(OBJS) /out:..\gifplot.lib
22