]> git.saurik.com Git - wxWidgets.git/blame - samples/html/makefile.g95
1. new samples proejct files for VC++
[wxWidgets.git] / samples / html / makefile.g95
CommitLineData
ac3c6ddb
GRG
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
13WXDIR = ../..
14
15THISDIR=$(WXDIR)/samples/html
16
17include $(WXDIR)/src/makeg95.env
18
19MAKEFILE = 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.
24all 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