1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-28 21:29:28 +00:00
freebsd-ports/graphics/jslice/files/patch-aa
Will Andrews e9e43bd953 Add jslice, a graphics utility which breaks up a JPEG image into slices
and provides HTML code referring the slices.
2000-07-12 14:32:47 +00:00

16 lines
363 B
Plaintext

--- Makefile Wed May 31 12:39:28 2000
+++ Makefile.new Wed Jul 12 10:23:42 2000
@@ -1,5 +1,11 @@
+LOCALBASE ?= /usr/local
+CC ?= cc
+INC ?= -I$(LOCALBASE)/include
+LIB ?= -L$(LOCALBASE)/lib
+CFLAGS ?= -O -pipe
+
all:
- gcc jslice.c -o jslice -Wall -ljpeg
+ $(CC) $(CFLAGS) $(INC) $(LIB) jslice.c -o jslice -Wall -ljpeg
install:
cp jslice /usr/local/bin