home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 11 Util
/
11-Util.zip
/
APPTYPE.ZIP
/
EMX
/
makefile.emx
< prev
Wrap
Makefile
|
1993-03-24
|
387b
|
21 lines
# makefile for apptype, a program to determine the type of executable.
# Environment: OS/2 and EMX/gcc 0.8f using dmake 3.8.
#
# Darrel Hankerson hankedr@mail.auburn.edu or hank@ducvax.auburn.edu
# 24 March 1993
DEFS = -DEMX
CC = gcc -Zomf -Zmt
CFLAGS = $(DEFS)
LFLAGS =
O = .obj
.c$O :
$(CC) -c $(CFLAGS) $<
apptype.exe : apptype$O
$(CC) -o $@ $(LFLAGS) $<