home *** CD-ROM | disk | FTP | other *** search
- #
- #
- # EDIT -- Make File for EDIT.EXE
- # Copyright 1987-1991, Authorware, Inc.
- #
- # Revision History
- #
- # 7/25/91 - Initial version
-
- all: edit.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 edit
- #
- # To make with debug information type:
- #
- # nmake edit "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 edit
- # nmake -a edit "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 -AM -G2w -Od -W2 $(cdebug)
-
- OBJS = edit.obj
-
- edit.obj: edit.c edit.h
- $(c_flags) edit.c
-
- edit.res: edit.rc
- rc -r edit.rc
-
- edit.exe: $(OBJS) edit.def edit.res
- link @<<
- $(OBJS),
- edit.exe,
- ,
- $(ldebug) mlibcew libw,
- edit.def
- <<NOKEEP
- rc -V edit.res
-