]> git.saurik.com Git - wxWidgets.git/blame - contrib/utils/convertrc/makefile.vc
cleaned a bit of mess in wxX11
[wxWidgets.git] / contrib / utils / convertrc / makefile.vc
CommitLineData
c20facdb
GT
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 wxconvert
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=wxconvert
17
18FINAL=0
19
20!if "$(FINAL)" == "0"
999d9a9f 21EXTRALIBS=$(WXDIR)\lib\wxxrcd.lib
c20facdb 22!else
999d9a9f 23EXTRALIBS=$(WXDIR)\lib\wxxrc.lib
c20facdb
GT
24!endif
25
26OBJECTS=convert.obj rc2xml.obj rc2wxr.obj wxr2xml.obj
27
28!include $(WXDIR)\src\makeprog.vc
29