# Makefile for Borland C++ 3.1 Compiler
#
# PB-GNU COOKIE ProBoard PEX Version
# Copyright (C) 1995 by Branislav L. Slantchev
#
# This file is part of the PB-GNU COOKIE.
#
# PB-GNU COOKIE is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2.
#
# PB-GNU COOKIE is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PB-GNU COOKIE; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#


.AUTODEPEND

.PATH.obj = .\

CC = bcc +COOKIE.CFG
TLINK = tlink
LIBPATH = C:\DEV\LIB
INCLUDEPATH = C:\DEV\INC

.c.obj:
  $(CC) -c {$< }


EXE_dependencies =  \
 $(LIBPATH)\pb_sdk.obj \
 cookie.obj

cookie.pex: cookie.cfg $(EXE_dependencies)
   tlink $(EXE_dependencies), cookie.pex,,, /n /C /x

cookie.obj: cookie.cfg cookie.c

cookie.cfg: makefile
  copy &&|
-ml
-v
-vi-
-wbbf
-wpin
-wamb
-wamp
-wasm
-wpro
-wcln
-wdef
-wsig
-wnod
-wstv
-wucp
-wuse
-weas
-wpre
-n.
-I$(INCLUDEPATH)
-L$(LIBPATH)
-P
| cookie.cfg

