home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Graphics
/
PPT
/
pluginsrc
/
sample_effect
/
DMakefile
next >
Wrap
Makefile
|
1998-11-11
|
681b
|
40 lines
#
# This is a generic effect makefile for DICE.
#
# $Id:$
#
# This variable tells the name.
NAME=sample_effect
# Tell here which libraries you wish to link too
LINKLIBS=
# Other stuff. Nothing of major importance.
MAINDIR=work:source/c/ppt
INSTDIR=modules
EXE=$(NAME).effect
CC= dcc
COPTS= -I$(MAINDIR)/include -Iinclude:
LINK= dlink
LOPTS= -s dlib:amiga31s.lib
$(EXE) : $(NAME).o
$(LINK) $(LOPTS) $(LINKLIBS) -o $(EXE) %(right)
$(NAME).o:$(NAME).c $(NAME).h $(MAINDIR)/ppt.h
$(CC) -c $(COPTS) $(NAME).c -o %(left)
clean:
Delete #?.o
clobber:
Delete #?.o $(EXE)
install : $(EXE)
slink %(right) TO $(MAINDIR)/$(INSTDIR)/$(EXE) STRIPDEBUG NOICONS