diff options
author | Quentin Rameau <quinq@fifth.space> | 2019-02-06 10:22:15 +0100 |
---|---|---|
committer | Quentin Rameau <quinq@fifth.space> | 2019-02-06 10:22:15 +0100 |
commit | b9cd3bb0bc3e897a44c8637b0da0fe0e28fa21c6 (patch) | |
tree | 6ed439bbd6597da3836a49ed086ec262557a259a | |
parent | 02541c314678aa1ee6eb485ca9dce66a46693aac (diff) | |
download | surf-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |