]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/tab/makefile.bcc
Fixed closing of program to work properly if PASS #1 failed for some reason. Before...
[wxWidgets.git] / samples / tab / makefile.bcc
index b68a9b6d21dba60ce63d4164f529f9ed831e8b21..3692ea19d23225076c96658ca5df92621accc131 100644 (file)
@@ -1,73 +1,14 @@
-#
-# 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
+# Purpose: makefile for tab example (BC++ 16bit)
+# Created: 2000-03-15
 
 !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)
+TARGET=tab
+OBJECTS=$(TARGET).obj
 
-minimal.res :      minimal.rc $(WXDIR)\include\msw\wx.rc
-    rc -r /i$(BCCDIR)\include /i$(WXDIR)\include\msw /i$(WXDIR)\contrib\fafa minimal
+!include $(WXDIR)\src\makeprog.bcc
 
-clean:
-        -erase *.obj
-        -erase *.exe
-        -erase *.res
-        -erase *.map
-        -erase *.rws