home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
mmoshead.zip
/
samples
/
mmiofmts
/
makefile
next >
Wrap
Makefile
|
1994-02-22
|
392b
|
28 lines
########################################
# Makefile for the mmio formats sample
#
# using emx 0.8h, mm4emx 1.0
#
#
# Marc E.E. van Woerkom, 2/94
#
CC=gcc
CFLAGS=-Wall -Zomf
LFLAGS=-Zomf -Zsys -los2me -liostream -s
all: mmiofmts.exe
.cc.obj:
$(CC) $(CFLAGS) -c $*.cc
.obj.exe:
$(CC) -o $*.exe $*.obj $*.def $(LFLAGS)
# clean up
clean:
del *.obj