wxWidgets/samples/html/makefile.b32
Julian Smart 9f15eeb32a Added/updated some BC++ makefiles
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2000-03-14 11:51:29 +00:00

55 lines
1.6 KiB
Plaintext

#
# File: makefile.b32
# Author: Julian Smart
# Created: 1993
# Updated:
# Copyright: (c) 1993, AIAI, University of Edinburgh
#
# "%W% %G%"
#
# Makefile : Builds wxHTML samples for Win95, BC++ WIN32
# Use FINAL=1 argument to make to build final version with no debugging
# info
# Set WXDIR for your system
WXDIR = $(WXWIN)
THISDIR=$(WXDIR)\samples
all:
cd $(WXDIR)\samples\html\about
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\help
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\helpview
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\printing
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\test
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\virtual
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\widget
make -f makefile.b32 FINAL=$(FINAL)
cd $(WXDIR)\samples\html\zip
make -f makefile.b32 FINAL=$(FINAL)
clean:
cd $(WXDIR)\samples\html\about
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\help
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\helpview
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\printing
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\test
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\virtual
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\widget
make -f makefile.b32 clean
cd $(WXDIR)\samples\html\zip
make -f makefile.b32 clean