forked from hkc/cc-stuff
Fix linking recipe for wsvpn
Only the first object was being added
This commit is contained in:
parent
be21d42fa0
commit
e8c53b1f9b
2
Makefile
2
Makefile
|
@ -4,6 +4,6 @@ LDLIBS += -lm
|
||||||
all: img2cpi wsvpn
|
all: img2cpi wsvpn
|
||||||
|
|
||||||
wsvpn: wsvpn.o dependencies/mongoose/mongoose.o
|
wsvpn: wsvpn.o dependencies/mongoose/mongoose.o
|
||||||
$(CC) $(LDFLAGS) "$<" $(LOADLIBES) $(LDLIBS) -o "$@"
|
$(CC) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o "$@"
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
Loading…
Reference in New Issue