]> git.saurik.com Git - wxWidgets.git/blame - contrib/utils/wxrcedit/makefile.vc
fixes to dependency problems in win32 makefiles
[wxWidgets.git] / contrib / utils / wxrcedit / makefile.vc
CommitLineData
031dfec8
JS
1#
2# File: makefile.vc
3# Author: Julian Smart
4# Created: 2000
5# Updated:
6# Copyright: (c) Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile : Builds wxrcedit
11# Use FINAL=1 argument to nmake to build final version with no debugging
12# info
13# Set WXDIR for your system
14WXDIR = $(WXWIN)
15
16PROGRAM=wxrcedit
17
18FINAL=0
19
20!if "$(FINAL)" == "0"
999d9a9f 21EXTRALIBS=$(WXDIR)\lib\wxxrcd.lib
b5ff2fbd
RD
22!endif
23
24!if "$(FINAL)" == "1"
999d9a9f 25EXTRALIBS=$(WXDIR)\lib\wxxrc.lib
031dfec8
JS
26!endif
27
b5ff2fbd 28!if "$(FINAL)" == "hybrid"
999d9a9f 29EXTRALIBS=$(WXDIR)\lib\wxxrch.lib
b5ff2fbd
RD
30!endif
31
12d9e308
VS
32OBJECTS=edapp.obj editor.obj nodehnd.obj xmlhelpr.obj preview.obj nodesdb.obj \
33 pe_basic.obj pe_adv.obj propedit.obj propframe.obj splittree.obj
031dfec8
JS
34
35!include $(WXDIR)\src\makeprog.vc
36