home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
os20
/
forceicon-1.2.lha
/
ForceIcon
/
Source
/
SMakeFile
< prev
next >
Wrap
Makefile
|
1993-12-31
|
666b
|
41 lines
### Some nice macros ;)))
LFLAGS = VERBOSE SC SD NODEBUG STRIPDEBUG
LIBS = LIB:debug.lib LIB:sc.lib LIB:amiga.lib LIB:boopsiget.lib
OBJS = ForceIcon.o Interface.o Support.o Error.o
### Head for the Global Symbol Table
ForceIcon.gst : ForceIcon_gst.c Protos.h ForceIcon.h
sc NOOBJNAME NODEBUG MGST=ForceIcon.gst ForceIcon_gst.c
GST ForceIcon.gst
### Compile all available C-Files
.c.o :
sc $*.c GSTIMM MCCONS
### Assembler all available ASM-Files
.asm.o :
genam $*.Asm
### Link that stuff together
ForceIcon : ForceIcon.gst $(OBJS)
slink WITH T:ForceIcon.WITH <<!(T:ForceIcon.WITH)
FROM
$(OBJS)
TO
ForceIcon
$(LFLAGS)
LIB
$(LIBS)
<