forked from hkc/cc-stuff
1
0
Fork 0

Fix linking recipe for wsvpn

Only the first object was being added
This commit is contained in:
Vftdan 2024-10-02 21:22:19 +02:00
parent be21d42fa0
commit e8c53b1f9b
1 changed files with 1 additions and 1 deletions

View File

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