Listing 8 Makefile for program BIGJOB

# ************** bigjob Make File (.Mak)   ***************
#
# Generated by GPF (Gui Programming Facility) V1.3 Level(01)
#
# Program Name   : bigjob
# DataBase Name  : No
# Date and Time  : Tue May 25 20:50:32 1993
# Program Level  : 1.0
# Copyright      : Andy Yuen 1993
#
#
**********************************************************

WinOptions = -2 -a1 -c -g -Ju -ml -W2 -x -Jm
DefOptions = -c -a1 -Ju -mli
CC = ztc
AllObj = \
      bigjob.Obj csemq.obj cthread.obj cschlr.obj

# note that Cschlr, Csemq and Cthread should not be compiled to
# generate Windows function prologs and epilogs

# the following inference rule is for Cschlr Csemq and Cthread
.cpp.obj:

              $(CC) $(DefOptions) $<

bigjob.exe:      $(AllObj) bigjob.res
              link @bigjob.l
              rc bigjob.res bigjob.exe

bigjob.obj:      bigjob.cpp bigjob.h
              $(CC) $(WinOptions) bigjob.cpp

bigjob.Res:      bigjob.Rc
              Rc -r bigjob.Rc

# End of File