home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
graphics
/
egs
/
egsflick
/
makefile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1995-02-27
|
195 b
|
16 lines
# Makefile for (x/e)flick
CC= dcc
LDLIBS= -legs -legsblit -legsintui -legsgfx
SRCS = eflick.c read.c
OBJS = eflick.o read.o
all:: egsflick
egsflick: $(OBJS)
$(CC) -o $@ $(OBJS) $(LDLIBS)