home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
libraries
/
input_446
/
src
/
devicetoolkits
/
input
/
test_proto
/
makefile
< prev
next >
Wrap
Makefile
|
1991-01-05
|
649b
|
48 lines
#
# Makefile for Input Device ToolKit Test Routines.
#
#
# Definitions
#
CC = cc
CFLAGS = -DMANXV5 -DTESTSHARED -DTESTPROTO
OCFLAGS = -DMANXV5 -m0b -DTESTSHARED -DTESTPROTO
LINK = ln
LFLAGS =
#
# Mains
#
MAINS = test1.mx test2.mx test3.mx test4.mx test5.mx test6.mx test7.mx
#
# Objects
#
OBJS = test1.mo test2.mo test3.mo test4.mo test5.mo test6.mo test7.mo
#
# Rules
#
.c.mo :
$(CC) $(CFLAGS) $*.c -O $*.mo
.mo.mx :
$(LINK) $(LFLAGS) $*.mo -lInputGlue -lc -O $*.mx
#
# Dependancies
#
Maker : $(OBJS) $(MAINS)
CLEANUP :
delete $(OBJS)
delete $(MAINS)