diff options
author | kaa <kaa@disroot.org> | 2023-06-30 10:24:14 -0700 |
---|---|---|
committer | kaa <kaa@disroot.org> | 2023-06-30 10:24:14 -0700 |
commit | 94e0fbe794455d3e61ffcb5b2a34918ddd12949b (patch) | |
tree | 20fced40766b3445a8020dc69c60055c26e981c2 /makefile | |
parent | 67904a09bab959fdb27f7d237275097840b19f7b (diff) |
Compare strstr’s return value against NULL instead of 0.
Diffstat (limited to 'makefile')
-rwxr-xr-x | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,11 +2,11 @@ CC = cc CFLAGS = -g -Wall LDFLAGS = -static -all: files drawn/monthly composed photographed/monthly +all: files drawn/monthly composed photographed/monthly neols .c: $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< clean: - rm -f files drawn/monthly composed photographed/monthly + rm -f files drawn/monthly composed photographed/monthly neols rm -f files.html files.html.bup drawn/*.html drawn/*.html.bup composed.html photographed/*.html photographed/*.html.bup |