summaryrefslogtreecommitdiff
blob: e99180f8686e4abae3887ded93b6ca48a2776fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Respect CFLAGS/LDFLAGS/DESTDIR and don't try to run missing tests.

--- gif2png-2.5.12/Makefile
+++ gif2png-2.5.12/Makefile
@@ -2,8 +2,7 @@
 
 VERSION = $(shell sed -n <NEWS '/::/s/^\([^:]*\).*/\1/p' | head -1)
 
-CFLAGS = -DVERSION=\"$(VERSION)\" -O2
-LDFLAGS = -s
+CFLAGS = -DVERSION=\"$(VERSION)\"
 
 SOURCES = 437_l1.c gif2png.c gifread.c memory.c version.c
 OBJECTS = $(SOURCES:.c=.o)
@@ -28,22 +27,19 @@
 web2png.1: web2png.xml
 	xmlto man web2png.xml
 
-check:
-	cd test; make --quiet test
-
 clean:
 	rm -f gif2png *.o gif2png.1 web2png.1
 
 version:
 	@echo $(VERSION)
 
-prefix?=/usr
+prefix ?= /usr
 
 install: gif2png gif2png.1 web2png.1
-	mkdir -p $(prefix)/bin
-	mkdir -p $(prefix)/share/man/man1
-	cp gif2png web2png $(prefix)/bin/
-	cp gif2png.1 web2png.1 $(prefix)/share/man/man1/
+	mkdir -p $(DESTDIR)$(prefix)/bin
+	mkdir -p $(DESTDIR)$(prefix)/share/man/man1
+	cp gif2png web2png $(DESTDIR)$(prefix)/bin/
+	cp gif2png.1 web2png.1 $(DESTDIR)$(prefix)/share/man/man1/
 
 uninstall:
 	rm $(prefix)/bin/gif2png $(prefix)/bin/web2png