home *** CD-ROM | disk | FTP | other *** search
- #
- # Created 25-MAR-1990 Richard B. Johnson
- #
- # Revised 02-JAN-1991 Richard B. Johnson
- #
- # Changed the warning-level to /W4 in the Microsoft CL command to
- # be compatible with Microsoft's C600 highest level of error checking.
- #
- #
- headers = show
- objects = show.obj
-
- cc = CL /Gs /J /AS /c /Ois /FPi /W4 $*.c
-
- show.obj: $(headers) $*.c
- $(cc)
-
- show.exe: $(headers) $(objects)
- LINK/EXEPACK $*;