home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 12 Font
/
12-Font.zip
/
FONTUTIL.ZIP
/
makefile.dos
< prev
next >
Wrap
Makefile
|
1992-06-12
|
858b
|
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 $**