aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-09-16 18:36:15 +0200
committerMattias Andrée <maandree@kth.se>2021-09-16 18:36:15 +0200
commit69c1d2d61902b314223afb304543f22db4c15da5 (patch)
tree02ce3f2f34c63ce5994cdee4b85ebb7efc97951d
parentFix makefile (diff)
downloadpdeath-69c1d2d61902b314223afb304543f22db4c15da5.tar.gz
pdeath-69c1d2d61902b314223afb304543f22db4c15da5.tar.bz2
pdeath-69c1d2d61902b314223afb304543f22db4c15da5.tar.xz
Improve makefile1.1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--Makefile6
-rw-r--r--config.mk6
2 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index f239a15..5399d45 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
CONFIGFILE = config.mk
include $(CONFIGFILE)
+
all: pdeath tinysleep test
pdeath: pdeath.o
@@ -44,19 +45,16 @@ check: pdeath tinysleep test
install: pdeath
mkdir -p -- "$(DESTDIR)$(PREFIX)/bin"
- mkdir -p -- "$(DESTDIR)$(PREFIX)/share/licenses/pdeath"
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1"
cp -- pdeath "$(DESTDIR)$(PREFIX)/bin/"
- cp -- LICENSE "$(DESTDIR)$(PREFIX)/share/licenses/pdeath/"
cp -- pdeath.1 "$(DESTDIR)$(MANPREFIX)/man1/"
uninstall:
-rm -f -- "$(DESTDIR)$(PREFIX)/bin/pdeath"
-rm -f -- "$(DESTDIR)$(MANPREFIX)/man1/pdeath.1"
- -rm -rf -- "$(DESTDIR)$(PREFIX)/share/licenses/pdeath"
clean:
- -rm -rf -- *.o pdeath tinysleep test .testdir
+ -rm -rf -- *.o *.su pdeath tinysleep test .testdir
SUFFIXES:
SUFFIXES: .o .c
diff --git a/config.mk b/config.mk
index 9e148ca..aa81003 100644
--- a/config.mk
+++ b/config.mk
@@ -1,6 +1,8 @@
-PREFIX = /usr/local
+PREFIX = /usr
MANPREFIX = $(PREFIX)/share/man
-CFLAGS = -std=c99 -Wall -Wextra -O2
+CC = cc
+
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
+CFLAGS = -std=c99 -Wall -O2
LDFLAGS = -s