sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit b5083aed4a90e7469df6059cfc5bfd5e19d6533e
parent 36a052950ca9d02a0a9837c6126c6ed1fe91fe6f
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Wed, 19 Dec 2018 00:04:58 +0100

Makefile: fix CFLAGS typo and add clean target

Diffstat:
MMakefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -5,4 +5,7 @@ all: build-page find * -type d -exec sh -ec './build-page "$$0" >$$0/index.html' {} \; build-page: build-page.c - $(CC) $(CFLAGFS) $(LDFLAGS) -o $@ build-page.c + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ build-page.c + +clean: + rm -f build-page