[Pkg-wmaker-commits] [wmbutton] 13/25: wmbutton: Makefile install rewritten

Doug Torrance dtorrance-guest at moszumanska.debian.org
Sun Jul 16 23:38:09 UTC 2017


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch upstream
in repository wmbutton.

commit 238361fc8677d8c274a7f87d3f512058677ee176
Author: Rodolfo García Peñas (kix) <kix at kix.es>
Date:   Wed Aug 22 19:33:45 2012 +0200

    wmbutton: Makefile install rewritten
    
    The current Makefile script doesn't work properly, because the path
    for /etc doesn't use DESTDIR and the installation path for $(DESTDIR)/usr/bin
    is not created before installing the binary file in the folder.
    
    LDFLAGS are needed in some distros to build the package, for example Debian.
    
    This patch solves these problems.
---
 Makefile | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/Makefile b/Makefile
index 8dbd22d..1ac7298 100644
--- a/Makefile
+++ b/Makefile
@@ -4,23 +4,21 @@ LIBS = -lX11 -lXpm -lXext
 
 TARGET = wmbutton
 OBJECTS = wmbutton.o wmb_libs.o
-DESTDIR =
-PREFIX = /usr/local
-BINDIR = ${PREFIX}/bin
-MANDIR = ${PREFIX}/share/man
+DESTDIR = /usr/local
+PREFIX = /usr
+BINDIR = /bin
 CONF   = /etc
 CONFFL = ${CONF}/wmbutton.conf
 INSTALL = /usr/bin/install
-INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755
-INSTALL_FILE    = $(INSTALL) -p -o root -g root -m 644
 
 CFLAGS += -Wall -O2
+LDFLAGS +=
 
 .c.o:
 	gcc -c ${CFLAGS} ${INCLUDES} $< -o $*.o
 
 ${TARGET}: ${OBJECTS}
-	gcc -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
+	gcc -o ${TARGET} ${OBJECTS}  ${LDFLAGS} ${LIBINC} ${LIBS}
 
 clean::
 	for i in ${OBJECTS}; do if [ -e $$i ] ; then rm $$i; fi; done 
@@ -29,8 +27,9 @@ clean::
 	if [ -e core ]; then rm core; fi
 
 install::
-	${INSTALL_PROGRAM} wmbutton ${DESTDIR}${BINDIR}
-	${INSTALL_FILE} sample.wmbutton ${DESTDIR}${CONFFL}
+	$(INSTALL) -d -m 0755 ${DESTDIR}${PREFIX}${BINDIR} ${DESTDIR}${CONF}
+	$(INSTALL) -p -o root -g root -m 755 wmbutton ${DESTDIR}${PREFIX}${BINDIR}
+	$(INSTALL) -p -o root -g root -m 644 sample.wmbutton ${DESTDIR}${CONFFL}
 
 wmbutton.o: wmbutton.c wmbutton.h Makefile
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmbutton.git



More information about the Pkg-wmaker-commits mailing list