]> git.saurik.com Git - wxWidgets.git/blob - samples/html/makefile.g95
corrected DSW dependencies
[wxWidgets.git] / samples / html / makefile.g95
1 #
2 # File: makefile.g95
3 # Author: Mumit Khan
4 # Created: 2000
5 # Updated:
6 # Copyright:
7 #
8 # Makefile : Builds samples for Win95, MSVC++ 16-bit
9 # Use FINAL=1 argument to nmake to build final version with no debugging
10 # info
11
12 # Set WXDIR for your system
13 WXDIR = ../..
14
15 THISDIR=$(WXDIR)/samples/html
16
17 include $(WXDIR)/src/makeg95.env
18
19 MAKEFILE = makefile.g95
20
21 # Mingw make may not have a shell to use, so can't use a loop here. Sigh.
22 # Please add new sample directories alphabetically to make it easier to
23 # keep track.
24 all clean:
25 -$(MAKE) -C about -f $(MAKEFILE) $@
26 -$(MAKE) -C help -f $(MAKEFILE) $@
27 -$(MAKE) -C helpview -f $(MAKEFILE) $@
28 -$(MAKE) -C printing -f $(MAKEFILE) $@
29 -$(MAKE) -C test -f $(MAKEFILE) $@
30 -$(MAKE) -C virtual -f $(MAKEFILE) $@
31 -$(MAKE) -C widget -f $(MAKEFILE) $@
32 -$(MAKE) -C zip -f $(MAKEFILE) $@
33