home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-02-04 | 858 b | 32 lines |
- # Makefile for type-1 utilities of I. Lee Hetherington (ilh@lcs.mit.edu)
- # for usage with Microsoft NMAKE, Microsoft C/C++ Compiler and MS-DOS
- # operating system.
- #
- # Author: Kai-Uwe Herbing (herbing@netmbx.netmbx.de)
- #
-
- all: lgetopt.obj sgetopt.obj t1disasm.exe t1asm.exe \
- t1ascii.exe t1binary.exe unpost.exe
-
- lgetopt.obj: getopt.c
- $(CC) -AL -Fo$@ -Ox -W4 -c $**
-
- sgetopt.obj: getopt.c
- $(CC) -AS -Fo$@ -Ox -W4 -c $**
-
- t1disasm.exe: t1disasm.c
- $(CC) -AS -Ox -W4 $**
-
- t1asm.exe: t1asm.c lgetopt.obj
- $(CC) -AH -I. -Ox -W4 $**
-
- t1ascii.exe: t1ascii.c
- $(CC) -AS -Ox -W4 $**
-
- t1binary.exe: t1binary.c lgetopt.obj
- $(CC) -AH -I. -Ox -W4 $**
-
- unpost.exe: unpost.c sgetopt.obj
- $(CC) -AS -I. -Ox -W4 $**
-