PageRenderTime 49ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/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
  1. SRCS = frame.c color.c plot2d.c plot3d.c font.c pixmap.c matrix.c gif.c
  2. OBJS = $(SRCS:.c=.obj)
  3. # Location of the Visual C++ tools (32 bit assumed)
  4. TOOLS = $(MSVCDIR)
  5. TARGET = gifplot.lib
  6. CC = cl.exe
  7. LINK = link.exe
  8. INCLUDE32 = -I"$(TOOLS)\include"
  9. MACHINE = IX86
  10. INCLUDES = -I..\Include
  11. LIB = lib.exe
  12. # C compiler flags
  13. CFLAGS = /Z7 /Od /WX /c /W1 /nologo
  14. gifplot::
  15. $(CC) $(CFLAGS) $(INCLUDE32) $(INCLUDES) $(SRCS) /DEBUG
  16. $(LIB) $(OBJS) /out:..\gifplot.lib