mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0a0a1779ef
This little program will take an Autodesk Flic (FLI/FLC) file and convert all of its frames into sequential images in a GIF89a file, along with a Netscape application extension animation chunk. This allows you to easily create animated GIF's that are viewable by Netscape Navigator 2 and Microsoft Internet Explorer 3 (and above) users. PR: ports/5433 Submitted by: giffunip@asme.org
24 lines
528 B
Plaintext
24 lines
528 B
Plaintext
--- Makefile.orig Thu Feb 20 21:28:59 1997
|
|
+++ Makefile Thu Jan 29 11:27:08 1998
|
|
@@ -1,16 +1,16 @@
|
|
all: fli2gif
|
|
|
|
fli2gif: fliplay.o gif.o fli2gif.o
|
|
- CC -o fli2gif fli2gif.o gif.o fliplay.o
|
|
+ $(CC) $(CCFLAGS) -o fli2gif fli2gif.o gif.o fliplay.o
|
|
|
|
fliplay.o: fliplay.C
|
|
- CC -c -I. fliplay.C
|
|
+ $(CC) $(CFLAGS) -c -I. fliplay.C
|
|
|
|
gif.o: gif.C
|
|
- CC -c -I. gif.C
|
|
+ $(CC) $(CFLAGS) -c -I. gif.C
|
|
|
|
fli2gif.o: fli2gif.C
|
|
- CC -c -I. fli2gif.C
|
|
+ $(CC) $(CFLAGS) -c -I. fli2gif.C
|
|
|
|
clean:
|
|
rm -f fli2gif fli2gif.o fliplay.o gif.o
|