forked from hkc/cc-stuff
1
0
Fork 0

Added Makefile for img2cpi and wsvpn

FIXME: downgrade mongoose submodule or fix wsvpn
This commit is contained in:
Vftdan 2024-10-02 18:47:09 +02:00
parent 2f80e5327d
commit a65943a6bd
1 changed files with 9 additions and 0 deletions

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
CPPFLAGS += -Idependencies -Idependencies/mongoose
LDLIBS += -lm
all: img2cpi wsvpn
wsvpn: wsvpn.o dependencies/mongoose/mongoose.o
$(CC) $(LDFLAGS) "$<" $(LOADLIBES) $(LDLIBS) -o "$@"
.PHONY: all