summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2019-02-06 10:22:15 +0100
committerQuentin Rameau <quinq@fifth.space>2019-02-06 10:22:15 +0100
commitb9cd3bb0bc3e897a44c8637b0da0fe0e28fa21c6 (patch)
tree6ed439bbd6597da3836a49ed086ec262557a259a
parent02541c314678aa1ee6eb485ca9dce66a46693aac (diff)
downloadsurf-b9cd3bb0bc3e897a44c8637b0da0fe0e28fa21c6.tar.gz
surf-b9cd3bb0bc3e897a44c8637b0da0fe0e28fa21c6.tar.bz2
surf-b9cd3bb0bc3e897a44c8637b0da0fe0e28fa21c6.zip
Makefile: fix a typo for the webext CFLAGS
Thanks to Justin Keogh <suckless@v6y.net> for spotting this
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cdbd8ad..90df791 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ libsurf-webext.so: $(WEBEXTOBJ)
$(CC) -shared -Wl,-soname,$@ $(LDFLAGS) -o $@ $< $(WEBEXTLIBS) -lc
surf: $(OBJ)
- $(CC) $(SURFLDLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
+ $(CC) $(SURFLDFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
clean:
rm -f surf $(OBJ)