home *** CD-ROM | disk | FTP | other *** search
- #
- # AWITOOLS. -- Make File for AWITOOLS
- # Copyright 1987-1991, Authorware, Inc.
- #
- # Revision History
- #
- # 7/25/91 - Initial version
-
- all: awitools.exe
-
- #
- # How to use this make file.
- #
- # First You must be on the drive and in the directoy of this make file!!!!!!
- #
- # To make without debug information type:
- #
- # nmake awitools
- #
- # To make with debug information type:
- #
- # nmake awitools "cvw="
- #
- # This IS case sensitive so use lower case.
- #
- # The optional -a flag may be used to force all targets to be
- # created. For example:
- #
- # nmake -a awitools
- # nmake -a awitools "cvw="
- #
- # This makefile was created and tested for verion 1.11 MS NMAKE utility
- #
-
- !IFDEF cvw
-
- cdebug = -Zpei
- ldebug = /NOE /NOD /CO
-
- !ELSE
-
- cdebug = -Zpe
- ldebug = /NOE /NOD
-
- !ENDIF
-
- c_flags = cl -c -AMw -Gsw -Od -W2 $(cdebug)
-
- OBJS = awitools.obj libentry.obj
-
- awitools.obj: awitools.c
- $(c_flags) awitools.c
-
- libentry.obj: libentry.asm
- masm -Mx libentry.asm,,;
-
- awitools.res: awitools.rc
- rc -r awitools.rc
-
- awitools.exe: $(OBJS) awitools.def awitools.res
- link @<<
- $(OBJS),
- awitools.exe,
- ,
- $(ldebug) mdllcew libw,
- awitools.def
- <<NOKEEP
- rc -V awitools.res
- del awitools.ucd
- rename awitools.exe awitools.ucd
-
-