]> git.saurik.com Git - wxWidgets.git/blame - src/makefile.vc
don't pass NULL pointer to printf(), this crashes Solaris printf
[wxWidgets.git] / src / makefile.vc
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#
48d1144b 17!include <makevc.env>
2bda0e17
KB
18
19THISDIR=$(WXWIN)\src
20
21all:
22 cd msw
7921cf2b 23 nmake -f makefile.vc
2bda0e17
KB
24 cd $(THISDIR)
25
26clean:
27 cd msw
7921cf2b 28 nmake -f makefile.vc clean
2bda0e17
KB
29 cd $(THISDIR)
30
31cleanall:
32 cd msw
7921cf2b 33 nmake -f makefile.vc cleanall
2bda0e17
KB
34 cd $(THISDIR)
35