git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# File:		makefile.bcc
 | 
						|
# Author:	Julian Smart
 | 
						|
# Created:	1993
 | 
						|
# Updated:	
 | 
						|
# Copyright:	(c) 1993, AIAI, University of Edinburgh
 | 
						|
#
 | 
						|
# "%W% %G%"
 | 
						|
#
 | 
						|
# Makefile : Builds minimal example (DOS).
 | 
						|
 | 
						|
!if "$(BCCDIR)" == ""
 | 
						|
!error You must define the BCCDIR variable in autoexec.bat, e.g. BCCDIR=d:\bc4
 | 
						|
!endif
 | 
						|
 | 
						|
!if "$(WXWIN)" == ""
 | 
						|
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
 | 
						|
!endif
 | 
						|
 | 
						|
WXDIR = $(WXWIN)
 | 
						|
!include $(WXDIR)\src\makebcc.env
 | 
						|
 | 
						|
THISDIR = $(WXDIR)\samples\minimal
 | 
						|
WXLIB = $(WXDIR)\lib\wx.lib
 | 
						|
LIBS=$(WXLIB) mathwl cwl import
 | 
						|
INC=-I$(WXDIR)\include\base -I$(WXDIR)\include\msw
 | 
						|
CFG=$(WXDIR)\src\wxwin.cfg
 | 
						|
 | 
						|
!ifndef FINAL
 | 
						|
FINAL=0
 | 
						|
!endif
 | 
						|
 | 
						|
!if "$(FINAL)" == "0"
 | 
						|
LINKFLAGS=/v/Vt /Twe /L$(WXDIR)\lib;$(BCCDIR)\lib
 | 
						|
OPT = -Od
 | 
						|
DEBUG_FLAGS= -v
 | 
						|
!else
 | 
						|
LINKFLAGS=/Twe /L$(WXDIR)\lib;$(BCCDIR)\lib
 | 
						|
OPT = -O2
 | 
						|
DEBUG_FLAGS=
 | 
						|
!endif
 | 
						|
CPPFLAGS=$(DEBUG_FLAGS) $(OPT) @$(CFG)
 | 
						|
 | 
						|
OBJECTS = minimal.obj
 | 
						|
 | 
						|
minimal:    minimal.exe
 | 
						|
 | 
						|
all:    minimal.exe
 | 
						|
 | 
						|
minimal.exe:    $(WXLIB) minimal.obj minimal.def minimal.res
 | 
						|
        tlink $(LINKFLAGS) @&&!
 | 
						|
c0wl.obj minimal.obj
 | 
						|
minimal
 | 
						|
nul
 | 
						|
$(LIBS)
 | 
						|
minimal.def
 | 
						|
!
 | 
						|
        rc -31 -K minimal.res
 | 
						|
 | 
						|
.$(SRCSUFF).obj:
 | 
						|
	bcc $(CPPFLAGS) -c {$< }
 | 
						|
 | 
						|
minimal.obj:      minimal.$(SRCSUFF)
 | 
						|
 | 
						|
minimal.res :      minimal.rc $(WXDIR)\include\msw\wx.rc
 | 
						|
    rc -r /i$(BCCDIR)\include /i$(WXDIR)\include\msw /i$(WXDIR)\contrib\fafa minimal
 | 
						|
 | 
						|
clean:
 | 
						|
        -erase *.obj
 | 
						|
        -erase *.exe
 | 
						|
        -erase *.res
 | 
						|
        -erase *.map
 | 
						|
        -erase *.rws
 |