]> git.saurik.com Git - wxWidgets.git/blame - src/makefile.nt
double wxMenuItem definition problem fixed
[wxWidgets.git] / src / makefile.nt
CommitLineData
2bda0e17
KB
1#
2# File: makefile.nt
3# Author: Julian Smart
4# Created: 1997
5# Updated:
6# Copyright: (c) 1997, Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile : Builds wxWindows library wx.lib for VC++ (32-bit)
11# Arguments:
12#
13# FINAL=1 argument to nmake to build version with no debugging info.
14# dll builds a library (wxdll.lib) suitable for creating DLLs
15# * Note that the dll target is experimental - see docs/dll.txt.
16#
17!include <ntwxwin.mak>
18
19THISDIR=$(WXWIN)\src
20
21all:
22 cd msw
23 nmake -f makefile.nt
24 cd $(THISDIR)
25
26clean:
27 cd msw
28 nmake -f makefile.nt clean
29 cd $(THISDIR)
30
31cleanall:
32 cd msw
33 nmake -f makefile.nt cleanall
34 cd $(THISDIR)
35