]> git.saurik.com Git - wxWidgets.git/blame - contrib/samples/fl/fl_demo1/makefile.vc
added ability to generate wx24-like wxWindows.dsp
[wxWidgets.git] / contrib / samples / fl / fl_demo1 / makefile.vc
CommitLineData
8e08b761
JS
1#
2# File: Makefile
3# Author: Hans Van Leemputten
4# Created: 2001
5# Updated:
6# Copyright: (c) wxWorkshop team, 2001
7#
8# Makefile : Builds fl sample (VC++, WIN32)
9# Use FINAL=1 argument to nmake to build final version with no debug info.
10
11WXDIR = ..\..\..\..
12TARGET = fl_demo1
13
14EXTRAINC = -DBMP_DIR=\"../bitmaps/\"
2b5f62a0
VZ
15
16!if "$(WXUSING_FL_DLL)" == "1"
17# Define WXUSING_FL_DLL so the compiler knows it is set.
18EXTRAINC = $(EXTRAINC) -DWXUSING_FL_DLL
19# Set to use wxWin in DLL format...
20WXUSINGDLL = 1
21
22!if "$(FINAL)" == "1"
23EXTRALIBS = $(WXDIR)\lib\fldll.lib
24!else
25EXTRALIBS = $(WXDIR)\lib\fldlld.lib
26!endif
27!else
8e08b761
JS
28!if "$(FINAL)" == "1"
29EXTRALIBS = $(WXDIR)\lib\fl.lib
30!else
31EXTRALIBS = $(WXDIR)\lib\fld.lib
32!endif
2b5f62a0 33!endif
8e08b761
JS
34
35PROGRAM = $(TARGET)
36OBJECTS = $(TARGET).obj
37
38!include $(WXDIR)\src\makeprog.vc