aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-09-16 15:57:38 +0300
committerCem Keylan <cem@ckyln.com>2020-09-16 15:57:38 +0300
commitae4deee8e038beb95598ce912433e056f80d3b97 (patch)
treeccfbc973d68ae066df82f532b18f5947bd29a745 /Makefile
parent79fafa3c6aa574f641d634fd3e136f29ec0ee9cf (diff)
downloadinit-ae4deee8e038beb95598ce912433e056f80d3b97.tar.gz
shalt.c: define _XOPEN_SOURCE on Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index be66946..b9f4ba9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ BINDIR = ${PREFIX}/bin
CONFDIR = /etc/init
CC = cc
-CFLAGS = -std=c99 -Wall -pedantic
+CFLAGS = -std=c99 -Wall -pedantic -D_XOPEN_SOURCE=500
LDFLAGS = -static
BIN = bin/shalt
@@ -19,7 +19,7 @@ all: ${BIN}
clean:
rm -f ${BIN} ${OBJ}
-install: bin/shalt
+install: ${BIN}
mkdir -p ${DESTDIR}${CONFDIR} ${DESTDIR}${INITDIR} ${DESTDIR}${BINDIR}
cp bin/shalt ${DESTDIR}${BINDIR}/shalt
chmod 755 ${DESTDIR}${BINDIR}/shalt