1998-05-21 14:22:00 +00:00
|
|
|
#
|
1999-01-24 19:13:55 +00:00
|
|
|
# File: makefile.vc
|
1998-05-21 14:22:00 +00:00
|
|
|
# Author: Julian Smart
|
|
|
|
# Created: 1993
|
|
|
|
# Updated:
|
|
|
|
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
|
|
|
#
|
|
|
|
# "%W% %G%"
|
|
|
|
#
|
|
|
|
# Makefile : Builds samples for Win95, MSVC++ 4.0
|
|
|
|
# Use FINAL=1 argument to nmake to build final version with no debugging
|
|
|
|
# info
|
|
|
|
|
|
|
|
# Set WXDIR for your system
|
|
|
|
WXDIR = $(WXWIN)
|
|
|
|
|
|
|
|
THISDIR=$(WXDIR)\samples
|
|
|
|
|
1999-01-24 19:13:55 +00:00
|
|
|
!include $(WXDIR)\src\makevc.env
|
1998-05-21 14:22:00 +00:00
|
|
|
|
|
|
|
DEBUG_FLAGS="/Zi /FR"
|
|
|
|
LINK_DEBUG_FLAGS="/RELEASE"
|
|
|
|
|
|
|
|
all:
|
|
|
|
cd $(WXDIR)\samples\splitter
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\resource
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\controls
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\listctrl
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\treectrl
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\validate
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\mdi
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\minimal
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\layout
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\printing
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-07-23 14:39:46 +00:00
|
|
|
cd $(WXDIR)\samples\toolbar
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\dialogs
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\docview
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-09-08 22:27:12 +00:00
|
|
|
cd $(WXDIR)\samples\docvwmdi
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\controls
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\nativdlg
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\grid
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\internat
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\dnd
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\joytest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\taskbar
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-09-08 22:27:12 +00:00
|
|
|
cd $(WXDIR)\samples\sashtest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1999-01-16 22:17:13 +00:00
|
|
|
!if "$(FINAL)" == "0"
|
1998-09-08 22:27:12 +00:00
|
|
|
cd $(WXDIR)\samples\memcheck
|
1999-01-16 22:17:13 +00:00
|
|
|
!endif
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-08-17 11:11:13 +00:00
|
|
|
cd $(WXDIR)\samples\ownerdrw
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-08-17 11:11:13 +00:00
|
|
|
cd $(WXDIR)\samples\checklst
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-12-10 22:44:09 +00:00
|
|
|
cd $(WXDIR)\samples\minifram
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\bombs
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\fractal
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\wxpoem
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1999-01-16 22:17:13 +00:00
|
|
|
cd $(WXDIR)\samples\typetest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\proplist
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1999-01-16 22:17:13 +00:00
|
|
|
cd $(WXDIR)\samples\image
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1999-02-09 15:37:52 +00:00
|
|
|
cd $(WXDIR)\samples\dde
|
|
|
|
nmake -f client.vc FINAL=$(FINAL)
|
|
|
|
nmake -f server.vc FINAL=$(FINAL)
|
1999-06-02 14:08:08 +00:00
|
|
|
cd $(WXDIR)\samples\caret
|
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
|
|
|
cd $(WXDIR)\samples\drawing
|
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
|
|
|
cd $(WXDIR)\samples\scroll
|
|
|
|
nmake -f makefile.vc FINAL=$(FINAL)
|
1998-09-08 22:27:12 +00:00
|
|
|
# cd $(WXDIR)\samples\regtest
|
1999-01-24 19:13:55 +00:00
|
|
|
# nmake -f makefile.vc FINAL=$(FINAL)
|
1998-05-21 14:22:00 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
cd $(WXDIR)\samples\splitter
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\mdi
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\minimal
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\layout
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\printing
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-07-23 14:39:46 +00:00
|
|
|
cd $(WXDIR)\samples\toolbar
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\dialogs
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\resource
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\listctrl
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\treectrl
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\validate
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\docview
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-09-08 22:27:12 +00:00
|
|
|
cd $(WXDIR)\samples\docvwmdi
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\controls
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\nativdlg
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\grid
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\internat
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\checklst
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\ownerdrw
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\dnd
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\joytest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\regtest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\taskbar
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-09-08 22:27:12 +00:00
|
|
|
cd $(WXDIR)\samples\sashtest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-05-21 14:22:00 +00:00
|
|
|
cd $(WXDIR)\samples\memcheck
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-12-10 22:44:09 +00:00
|
|
|
cd $(WXDIR)\samples\minifram
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\bombs
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\fractal
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\wxpoem
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1999-01-16 22:17:13 +00:00
|
|
|
cd $(WXDIR)\samples\typetest
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1998-12-31 16:15:45 +00:00
|
|
|
cd $(WXDIR)\samples\proplist
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1999-01-16 22:17:13 +00:00
|
|
|
cd $(WXDIR)\samples\image
|
1999-01-24 19:13:55 +00:00
|
|
|
nmake -f makefile.vc clean
|
1999-02-09 15:37:52 +00:00
|
|
|
cd $(WXDIR)\samples\dde
|
|
|
|
nmake -f client.vc clean
|
|
|
|
nmake -f server.vc clean
|
1999-06-02 14:08:08 +00:00
|
|
|
cd $(WXDIR)\samples\caret
|
|
|
|
nmake -f makefile.vc clean
|
|
|
|
cd $(WXDIR)\samples\drawing
|
|
|
|
nmake -f makefile.vc clean
|
|
|
|
cd $(WXDIR)\samples\scroll
|
|
|
|
nmake -f makefile.vc clean
|
1999-02-09 15:37:52 +00:00
|
|
|
cd $(WXDIR)\samples
|
1998-05-21 14:22:00 +00:00
|
|
|
|