home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / OPENDOOR / WRITEJAM.ZIP / MAKEFILE.MSC < prev    next >
Encoding:
Text File  |  1994-03-01  |  733 b   |  32 lines

  1. #
  2. #   WriteJam - Written by Michael Lecuyer
  3. #
  4. #   Make the function to write a message to the JAM message base
  5. #
  6. #   Copyright 1993 Michael Lecuyer. ALL RIGHTS RESERVED.
  7. #
  8. #     JAM API:
  9. #   Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
  10. #   Mats Wallin. ALL RIGHTS RESERVED.
  11. #
  12. #   Be sure to run the correct model - CMDL governs this.
  13. #
  14. CMDL    = L
  15. CC      = cl
  16. CFLAGS  = /c -A$(CMDL) /O /W3 /D__MSDOS__
  17. LFLAGS=/NOL /ST:8000 /F /PACKC /LI /SEG:256
  18.  
  19. .c.obj:
  20.     $(CC) -c $(CFLAGS) $*.c
  21.  
  22.  
  23. all: writejam.exe
  24.  
  25. writejam.obj: writejam.c writejam.h
  26.  
  27. maintest.obj: maintest.c writejam.h
  28.  
  29. writejam.exe: writejam.obj maintest.obj
  30.     link $(LFLAGS) maintest+writejam,.\writejam,nul,jamcapi$(CMDL);
  31.  
  32.