doc changes espec. wxBitmap overview git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			160 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			160 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# File:		makefile.nt
 | 
						|
# 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
 | 
						|
 | 
						|
!include $(WXDIR)\src\ntwxwin.mak
 | 
						|
 | 
						|
DEBUG_FLAGS="/Zi /FR"
 | 
						|
LINK_DEBUG_FLAGS="/RELEASE"
 | 
						|
 | 
						|
all:
 | 
						|
        cd $(WXDIR)\samples\splitter
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\resource
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\controls
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\listctrl
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\treectrl
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\validate
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\mdi
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\minimal
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\layout
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\printing
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\toolbar
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\dialogs
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\docview
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\docvwmdi
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\controls
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\nativdlg
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\grid
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\internat
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\dnd
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\joytest
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\taskbar
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\sashtest
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
!if "$(FINAL)" == "0"
 | 
						|
        cd $(WXDIR)\samples\memcheck
 | 
						|
!endif
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\ownerdrw
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\checklst
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\minifram
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\bombs
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\fractal
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\wxpoem
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\typetest
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\proplist
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
        cd $(WXDIR)\samples\image
 | 
						|
        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
#        cd $(WXDIR)\samples\regtest
 | 
						|
#        nmake -f makefile.nt FINAL=$(FINAL)
 | 
						|
 | 
						|
clean:
 | 
						|
        cd $(WXDIR)\samples\splitter
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\mdi
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\minimal
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\layout
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\printing
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\toolbar
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\dialogs
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\resource
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\listctrl
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\treectrl
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\validate
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\docview
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\docvwmdi
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\controls
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\nativdlg
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\grid
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\internat
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\checklst
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\ownerdrw
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\dnd
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\joytest
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\regtest
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\taskbar
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\sashtest
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\memcheck
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\minifram
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\bombs
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\fractal
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\wxpoem
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\typetest
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\proplist
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
        cd $(WXDIR)\samples\image
 | 
						|
        nmake -f makefile.nt clean
 | 
						|
 |