home *** CD-ROM | disk | FTP | other *** search
- #
- # WriteJam - Written by Michael Lecuyer
- #
- # Make the function to write a message to the JAM message base
- #
- # Copyright 1993 Michael Lecuyer. ALL RIGHTS RESERVED.
- #
- # JAM API:
- # Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
- # Mats Wallin. ALL RIGHTS RESERVED.
- #
- # Be sure to run the correct model - CMDL governs this.
- #
- CMDL = l
- CC = bcc
- CFLAGS = -c -m$(CMDL) -G -Ox -Z -f- -d -w
-
- .c.obj:
- $(CC) $(CFLAGS) {$< }
-
-
- .c.obj:
- bcc -c -f- -G -O2 -Od -d -w -m$(CMDL) -Ic:\bcpp\include;. $*.c
-
- all: writejam.exe
-
- writejam.obj: writejam.c writejam.h
- bcc -c -f- -G -O2 -Ox -d -w -m$(CMDL) -Ic:\bcpp\include;. writejam.c
-
- maintest.obj: maintest.c writejam.h
- bcc -c -f- -G -O2 -Ox -d -w -m$(CMDL) -Ic:\bcpp\include;. maintest.c
-
- LFLAGS = -Lc:\bcpp\lib
-
- writejam.exe: writejam.obj maintest.obj
- bcc $(LFLAGS) -m$(CMDL) writejam.obj maintest.obj jamcapi$(CMDL).lib
-
-