Sha256: 9d92838af8abdccc058e27f41daec05485f71d5e34af2aaddb63681bf1778d29
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# (Note: this is not presently used, there's an autoconf build.) # # This is the make file for the util subdirectory of the GIF library # The compiler must be GNU gcc or ANSI-compliant. # # To make test versions in the utils directory: # # make -f makefile.unx [all] # # To install them in the /usr/bin directory: # # make -f makefile.unx [install-all] # # Declare the include files and libraries for the GIF utils: INC = -I../lib GIF_LIB = ../lib/libgif.a GIF_INC_DEPEND = ../lib/libgif.a ../lib/gif_lib.h ../util/getarg.h # Where to copy executables to: DEST = /usr/bin CC = gcc #CFLAGS = $(INC) -fno-builtin -O -s -W -Wreturn-type -Wcomment CFLAGS = $(INC) -fno-builtin -g -W -Wreturn-type -Wcomment BINARIES = gif2rgb gifbg gifclrmp giffix gifhisto \ gifinter gifinto giftext gifwedge gif2raw gifecho gifsponge giffilter \ gifbuild gifcolor giftool all: $(BINARIES) install-all: cp $(BINARIES) $(SCRIPTS) $(DEST) .c: $(CC) $(CFLAGS) $< $(GIF_LIB) -lm $(LDFLAGS) -o $* uninstall-utils: (cd $(DEST); rm -f $(BINARIES)) clean: rm -f $(BINARIES)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
giflib-0.4 | ext/giflib/giflib-5.1.1/util/Makefile.unx |
giflib-0.3 | ext/giflib/giflib-5.1.1/util/Makefile.unx |