Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 211704 | Differences between
and this patch

Collapse All | Expand All

(-)codec/Makefile (+7 lines)
Lines 2-7 Link Here
2
2
3
CFLAGS = -O3 -lstdc++ # -g -p -pg
3
CFLAGS = -O3 -lstdc++ # -g -p -pg
4
4
5
PREFIX = /usr
6
INSTALL_BINDIR = $(PREFIX)/bin
7
5
all: j2k_to_image image_to_j2k
8
all: j2k_to_image image_to_j2k
6
9
7
j2k_to_image: j2k_to_image.c ../libopenjpeg.a
10
j2k_to_image: j2k_to_image.c ../libopenjpeg.a
Lines 12-14 Link Here
12
15
13
clean:
16
clean:
14
	rm -f j2k_to_image image_to_j2k
17
	rm -f j2k_to_image image_to_j2k
18
19
install: all
20
	install -d '$(DESTDIR)$(INSTALL_BINDIR)'
21
	install -m 755 j2k_to_image image_to_j2k '$(DESTDIR)$(INSTALL_BINDIR)'

Return to bug 211704