home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
print
/
t1utils
/
makefile.os2
< prev
next >
Wrap
Makefile
|
1994-02-04
|
569b
|
24 lines
# Makefile for type-1 utilities of I. Lee Hetherington (ilh@lcs.mit.edu)
# for usage with GNU MAKE, EMX/GCC Compiler version 0.8e and OS/2 2.0
# operating system.
#
CC = gcc -Zmt -Zomf -O
all: t1disasm.exe t1asm.exe t1ascii.exe t1binary.exe unpost.exe
t1disasm.exe: t1disasm.c
$(CC) -o t1disasm.exe t1disasm.c
t1asm.exe: t1asm.c
$(CC) -o t1asm.exe t1asm.c
t1ascii.exe: t1ascii.c
$(CC) -o t1ascii.exe t1ascii.c
t1binary.exe: t1binary.c
$(CC) -o t1binary.exe t1binary.c
unpost.exe: unpost.c
$(CC) -o unpost.exe unpost.c