home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
500-599
/
ff562.lza
/
Intuisup
/
Gadgets
/
source.lzh
/
makefile
< prev
Wrap
Makefile
|
1991-10-21
|
823b
|
35 lines
#
# Makefile for Gadgets
#
# Macros
#
CFLAGS_PRE =-a -pacs -so -wdelopqw -ho ram:gadgets.pre
#CFLAGS_PRE =-a -dMWDEBUG -pacs -so -wdelopqw -ho ram:gadgets.pre
CFLAGS_TEST=-pacs -so -wdelopqw -hi ram:gadgets.pre
CFLAGS_LIB =-mb -pacs -so -wdelopqw -hi ram:gadgets.pre
LFLAGS =-m +q
OBJECTS =gadgets1.o gadgets2.o gadgets3.o gadgets_test.o /render/render.o\
/texts/texts.o /borders/borders.o
LIBRARIES =-lmemwatch16 -lc16
#
# Dependancy entries
#
all: ram:gadgets.pre gadgets_test
#
.c.o:
cc $(CFLAGS_LIB) -o $@ $*.c
#
ram:gadgets.pre: gadgets.pre
copy gadgets.pre $@ clone
#
gadgets.pre: includes.h
cc $(CFLAGS_PRE) -o nil: includes.h
copy ram:$@ $@ clone
#
gadgets_test: $(OBJECTS)
ln $(LFLAGS) -o $@ $(OBJECTS) $(LIBRARIES)
#
gadgets_test.o: gadgets_test.c
cc $(CFLAGS_TEST) -o $@ $*.c
#