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

Collapse All | Expand All

(-)nvclock-orig/src/Makefile.in (-6 / +6 lines)
Lines 7-16 HAVE_NVCONTROL=@HAVE_NVCONTROL@ Link Here
7
libbackend=./backend/libbackend.a
7
libbackend=./backend/libbackend.a
8
libnvcontrol=./nvcontrol/libnvcontrol.a
8
libnvcontrol=./nvcontrol/libnvcontrol.a
9
9
10
prefix=$(DESTDIR)@prefix@
10
prefix=@prefix@
11
exec_prefix=$(DESTDIR)@exec_prefix@
11
exec_prefix=@exec_prefix@
12
bindir=$(DESTDIR)@bindir@
12
bindir=@bindir@
13
13
14
ifeq ($(HAVE_NVCONTROL), yes)
14
ifeq ($(HAVE_NVCONTROL), yes)
15
    DEPS=$(libbackend) $(libnvcontrol)
15
    DEPS=$(libbackend) $(libnvcontrol)
16
    INCLUDES=@X11_CFLAGS@ -I./backend -I./nvcontrol -I..
16
    INCLUDES=@X11_CFLAGS@ -I./backend -I./nvcontrol -I..
Lines 44-56 distclean: distclean-recursive clean-app Link Here
44
40
45
install: install-recursive install-app
41
install: install-recursive install-app
46
install-app:
42
install-app:
47
	mkdir -p $(bindir)
43
	mkdir -p $(DESTDIR)$(bindir)
48
	$(INSTALL) -c nvclock $(DISTDIR)$(bindir)/nvclock
44
	$(INSTALL) -c nvclock $(DESTDIR)$(bindir)/nvclock
49
45
50
46
51
uninstall: uninstall-recursive uninstall-app
47
uninstall: uninstall-recursive uninstall-app
52
uninstall-app:
48
uninstall-app:
53
	rm -f $(bindir)/nvclock
49
	rm -f $(DESTDIR)$(bindir)/nvclock
54
50
55
51
56
# Walk through the sub directories and do what is requested
52
# Walk through the sub directories and do what is requested

Return to bug 204428