[Pkg-wmaker-commits] [wmifs] 79/118: wmifs: Update Makefile.

Doug Torrance dtorrance-guest at moszumanska.debian.org
Thu Aug 27 02:37:54 UTC 2015


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

dtorrance-guest pushed a commit to branch master
in repository wmifs.

commit 802a6a7946376f814f2b6cee72e203c545b343fd
Author: Doug Torrance <dtorrance at monmouthcollege.edu>
Date:   Wed May 27 17:33:13 2015 -0500

    wmifs: Update Makefile.
    
    In particular,
    - Drop unnecessary definition of DESTDIR.
    - Drop LIBDIR; pointed to deprecated X11R6 directory.
    - Honors CPPFLAGS and LDFLAGS build flags.
    - Remove out-of-date version number from installation message.
    
    Based in part on a patch from the Debian package [1].
    
    [1] https://sources.debian.net/src/wmifs/1.4-2/debian/patches/hardening.patch/
---
 Makefile | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile
index 9dec53d..e2d8986 100755
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,3 @@
-
-DESTDIR =
 prefix =/usr/local
 bindir=${prefix}/bin
 datarootdir=${prefix}/share
@@ -8,7 +6,6 @@ man1dir=${mandir}/man1
 CONF=/etc
 
 CC     = gcc
-LIBDIR = -L/usr/X11R6/lib
 LIBS   = -lXpm -lXext -lX11
 OBJS =	wmifs.o \
 		wmgeneral/wmgeneral.o \
@@ -23,10 +20,10 @@ INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755
 INSTALL_FILE    = $(INSTALL) -p -o root -g root -m 644
 
 .c.o:
-	$(CC) -c $(CFLAGS) $< -o $*.o
+	$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o
 
 wmifs: $(OBJS)
-	$(CC) -o wmifs $^ -lXext $(LIBDIR) $(LIBS)
+	$(CC) $(LDFLAGS) -o wmifs $^ $(LIBS)
 
 all:: wmifs
 
@@ -43,6 +40,6 @@ install::
 	$(INSTALL_PROGRAM) wmifs $(DESTDIR)$(bindir)
 	$(INSTALL_FILE) sample.wmifsrc $(DESTDIR)$(CONF)/wmifsrc
 	$(INSTALL_FILE) wmifs.1 $(DESTDIR)$(man1dir)
-	@echo "WMiFS-1.3beta installation finished..."
+	@echo "WMiFS installation finished..."
 	@echo " "
 	@echo "have fun! ;-)"

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



More information about the Pkg-wmaker-commits mailing list