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 = cl
- CFLAGS = /c -A$(CMDL) /O /W3 /D__MSDOS__
- LFLAGS=/NOL /ST:8000 /F /PACKC /LI /SEG:256
-
- .c.obj:
- $(CC) -c $(CFLAGS) $*.c
-
-
- all: writejam.exe
-
- writejam.obj: writejam.c writejam.h
-
- maintest.obj: maintest.c writejam.h
-
- writejam.exe: writejam.obj maintest.obj
- link $(LFLAGS) maintest+writejam,.\writejam,nul,jamcapi$(CMDL);
-
-