[Pkg-wmaker-commits] [wmcalc] 25/65: wmcalc: Update Makefile.
Doug Torrance
dtorrance-guest at moszumanska.debian.org
Sun Aug 23 13:54:03 UTC 2015
This is an automated email from the git hooks/post-receive script.
dtorrance-guest pushed a commit to branch master
in repository wmcalc.
commit 99b2f0d0323253785c192057e601750d35a9eadf
Author: Doug Torrance <dtorrance at monmouthcollege.edu>
Date: Sat Jan 10 10:59:43 2015 -0600
wmcalc: Update Makefile.
In particular,
- Drop INCLUDES and LIBINC variables; referenced deprecated X11R6 directories
and INCLUDES unnecessarily included the default path.
- Switch hard-coded gcc for CC variable.
- Move hard-coded -02 and -Wall flags to new CFLAGS variable.
- Switch ${} to $() for consistency.
- Add new INSTALL_DIR variable for creating installation directories.
- Respect CPPFLAGS and LDFLAGS.
---
Makefile | 29 ++++++++++++++++-------------
1 file changed, 16 insertions(+), 13 deletions(-)
diff --git a/Makefile b/Makefile
index 37b30f4..0559573 100644
--- a/Makefile
+++ b/Makefile
@@ -1,29 +1,32 @@
-INCLUDES =-I/usr/X11R6/include/X11 -I/usr/local/include
-LIBINC =-L/usr/X11R6/lib
LIBS = -lX11 -lXpm -lXext -lm
-
+CC = gcc
TARGET = wmcalc
OBJECTS = wmcalc.o readln.o wmcalcswitch.o wmcalcfunc.o
+CFLAGS = -O2 -Wall
DESTDIR =
PREFIX = /usr/local
-BINDIR = ${PREFIX}/bin
-MANDIR = ${PREFIX}/share/man/man1
+BINDIR = $(PREFIX)/bin
+MANDIR = $(PREFIX)/share/man/man1
CONF = /etc
INSTALL = /usr/bin/install
+INSTALL_DIR = $(INSTALL) -d
INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755
INSTALL_FILE = $(INSTALL) -p -o root -g root -m 644
.c.o:
- gcc -O2 -c -Wall ${INCLUDES} ${FLAGS} $< -o $*.o
+ $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o
-${TARGET}: ${OBJECTS}
- gcc -O2 -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
+$(TARGET): $(OBJECTS)
+ $(CC) $(LDFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS)
clean::
- for i in ${OBJECTS}; do if [ -e $$i ] ; then rm $$i; fi; done
- if [ -e ${TARGET} ] ; then rm ${TARGET}; fi
+ for i in $(OBJECTS); do if [ -e $$i ] ; then rm $$i; fi; done
+ if [ -e $(TARGET) ] ; then rm $(TARGET); fi
install::
- ${INSTALL_PROGRAM} wmcalc ${DESTDIR}${BINDIR}
- ${INSTALL_FILE} wmcalc.conf ${DESTDIR}${CONF}
- ${INSTALL_FILE} wmcalc.1 ${DESTDIR}${MANDIR}
+ $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
+ $(INSTALL_PROGRAM) wmcalc $(DESTDIR)$(BINDIR)
+ $(INSTALL_DIR) $(DESTDIR)$(CONF)
+ $(INSTALL_FILE) wmcalc.conf $(DESTDIR)$(CONF)
+ $(INSTALL_DIR) $(DESTDIR)$(MANDIR)/man1
+ $(INSTALL_FILE) wmcalc.1 $(DESTDIR)$(MANDIR)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmcalc.git
More information about the Pkg-wmaker-commits
mailing list