home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
BINTREES.PAK
/
MAKEFILE
< prev
Wrap
Text File
|
1995-08-29
|
1KB
|
29 lines
#--------------------------------------------------------------------------#
# #
# MAKEFILE for Binary Search Tree examples #
# #
# Copyright (c) 1994 Borland International #
# All Rights Reserved #
# #
# Usage: #
# #
# make -DCON32 for 32-bit Windows Console #
# make MODEL={s|m|c|l} for 16-bit Windows using EasyWin #
# make MODEL={s|m|c|l|h} -DDOS16 for 16-bit DOS #
# #
#--------------------------------------------------------------------------#
EXE = bintree
EXEALL = bintree.exe ibintree.exe
EXEMAKE= $(BINTREE) $(IBINTREE)
RULES = myclass.obj: ..\myclass.cpp
BINTREE=$(EXERULE:bintree.obj=bintree.obj myclass.obj)
IBINTREE=$(BINTREE:bintree=ibintree)
!include $(BCEXAMPLEDIR)\bidsmake.gen