]> git.saurik.com Git - wxWidgets.git/blame - samples/html/Makefile.vc
EXPORTED an array to quiet the DLL compilation
[wxWidgets.git] / samples / html / Makefile.vc
CommitLineData
ddbde726
RS
1#
2# File: makefile.vc
3# Author: Julian Smart
4# Created: 1993
5# Updated:
6# Copyright: (c) 1993, AIAI, University of Edinburgh
7#
8# "%W% %G%"
9#
10# Makefile : Builds samples for Win95, MSVC++ 4.0
11# Use FINAL=1 argument to nmake to build final version with no debugging
12# info
13
14# Set WXDIR for your system
15WXDIR = $(WXWIN)
16
17THISDIR=$(WXDIR)\samples
18
19!include $(WXDIR)\src\makevc.env
20
21DEBUG_FLAGS="/Zi /FR"
22LINK_DEBUG_FLAGS="/RELEASE"
23
24all:
25 cd $(WXDIR)\samples\html\about
26 nmake -f makefile.vc FINAL=$(FINAL)
27 cd $(WXDIR)\samples\html\help
28 nmake -f makefile.vc FINAL=$(FINAL)
29 cd $(WXDIR)\samples\html\printing
30 nmake -f makefile.vc FINAL=$(FINAL)
31 cd $(WXDIR)\samples\html\test
32 nmake -f makefile.vc FINAL=$(FINAL)
33 cd $(WXDIR)\samples\html\virtual
34 nmake -f makefile.vc FINAL=$(FINAL)
35 cd $(WXDIR)\samples\html\widget
36 nmake -f makefile.vc FINAL=$(FINAL)
37 cd $(WXDIR)\samples\html\zip
38 nmake -f makefile.vc FINAL=$(FINAL)
39
40clean:
41 cd $(WXDIR)\samples\html\about
42 nmake -f makefile.vc clean
43 cd $(WXDIR)\samples\html\help
44 nmake -f makefile.vc clean
45 cd $(WXDIR)\samples\html\printing
46 nmake -f makefile.vc clean
47 cd $(WXDIR)\samples\html\test
48 nmake -f makefile.vc clean
49 cd $(WXDIR)\samples\html\virtual
50 nmake -f makefile.vc clean
51 cd $(WXDIR)\samples\html\widget
52 nmake -f makefile.vc clean
53 cd $(WXDIR)\samples\html\zip
54 nmake -f makefile.vc clean
55