Makefile: rm headers - saait - the most boring static page generator | |
git clone git://git.codemadness.org/saait | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 893bbfdd9283e8f38700a2f5623c95a37c2c6f41 | |
parent 63d47467edf428f92bdb01f1f0e7d60239782942 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 15 Feb 2020 00:12:34 +0100 | |
Makefile: rm headers | |
Diffstat: | |
M Makefile | 7 ++----- | |
1 file changed, 2 insertions(+), 5 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -15,9 +15,6 @@ SAAIT_CPPFLAGS = -D_DEFAULT_SOURCE | |
SRC = \ | |
saait.c | |
-HDR = \ | |
- arg.h\ | |
- config.h | |
BIN = \ | |
saait | |
MAN1 = \ | |
@@ -40,7 +37,7 @@ all: ${BIN} | |
dist: | |
rm -rf ${NAME}-${VERSION} | |
mkdir -p ${NAME}-${VERSION} | |
- cp -f ${MAN1} ${HDR} ${SRC} ${DOC} \ | |
+ cp -f ${MAN1} ${SRC} ${DOC} \ | |
Makefile \ | |
config.cfg print.css style.css \ | |
${NAME}-${VERSION} | |
@@ -51,7 +48,7 @@ dist: | |
gzip -c > ${NAME}-${VERSION}.tar.gz | |
rm -rf ${NAME}-${VERSION} | |
-${OBJ}: ${HDR} | |
+${OBJ}: | |
saait: saait.o | |
${CC} -o $@ saait.o ${LDFLAGS} |