home *** CD-ROM | disk | FTP | other *** search
- #
- # JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
- #
- # JAM Windows Utility
- #
- # Written by Mats Wallin
- #
- # ----------------------------------------------------------------------
- #
- # makefile (JAMmb)
- #
- # Make file for JAM(mbp) JAMUTIL (Windows) and Zortech C++ 3.x
- #
- # NOTE! ZRC is not able to handle the Version Resource
- # To use the ZRC resource compiler, the Version Resource should be
- # removed from the JAMUTILW.RC file
- #
- # Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
- # Mats Wallin. ALL RIGHTS RESERVED.
- #
- CMDL = s
- CC = ztc
- RC = rc
- #RC = zrc
- COPT = -o+all
- CFLAGS = -c -2 -m$(CMDL) $(COPT) -W -r -w- -D_WINDOWS -a1
-
- OBJS = jamutilw.obj
- LIBS = ..\jamapi.lib
- DEF = jamutilw.def
- DLGS = jamutilw.dlg
-
- .c.obj:
- $(CC) $(CFLAGS) $*.c
-
- jamutilw.exe: $(OBJS) $(DEF) $(DLGS)
- blink /al:16 /noi /map $(OBJS), $@, $*, $(LIBS), $(DEF)
- $(RC) -t $* $@
-