
# Tell MAKE to figure out what header files the source depends upon

.autodepend


# The "&&|" says to copy all that follows up to the next "|"
# into a temp file which is deleted at the end
#
# The temp file name would be placed on the command line where
# the "&&" is found
#
# The "@" before indicates to TLINK that this is a response file

statusb.exe : makefile statusb.def statusb.obj
  tlink /c/v/x/Twe/C @&&|
c0ws.obj+
statusb.obj
statusb.exe
nul.map
import.lib+
cws.lib
statusb.def
|


# Compile to an object file

statusb.obj : statusb.c
  bcc -c -ms -w -v -f- -P-.C -tDe -tWE -DWIN31;STRICT statusb.c



# If the DEF file doesn't exist, create it
# This copies everything between "&&|" and "|"
# to the file "statusb.def"

statusb.def : makefile
  copy &&|
DESCRIPTION 'Status Bar Example'
EXETYPE     WINDOWS
CODE        PRELOAD MOVEABLE DISCARDABLE
DATA        PRELOAD MOVEABLE MULTIPLE
HEAPSIZE    4096
STACKSIZE   8192
EXPORTS     WNDPROC
| statusb.def


