Makefile: fix a typo for the webext CFLAGS

Thanks to Justin Keogh <suckless@v6y.net> for spotting this
This commit is contained in:
Quentin Rameau 2019-02-06 10:22:15 +01:00
parent 02541c3146
commit b9cd3bb0bc
1 changed files with 1 additions and 1 deletions

View File

@ -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)