Makefile: remove duplicate -c flag - saait - the most boring static page genera… | |
git clone git://git.codemadness.org/saait | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 5b6243dd0926b623cced3118df001d13089675ed | |
parent a4f1fc6f95d5ec2d60dbc3be009a8c9f0a7da45c | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Mon, 10 Feb 2020 19:33:19 +0100 | |
Makefile: remove duplicate -c flag | |
Diffstat: | |
M Makefile | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -35,7 +35,7 @@ all: ${BIN} | |
${CC} ${SAAIT_LDFLAGS} -o $@ | |
.c.o: | |
- ${CC} -c ${SAAIT_CFLAGS} ${SAAIT_CPPFLAGS} -o $@ -c $< | |
+ ${CC} ${SAAIT_CFLAGS} ${SAAIT_CPPFLAGS} -o $@ -c $< | |
dist: | |
rm -rf ${NAME}-${VERSION} |