From a65943a6bdd9a9f519924a20a457e17f9e108cef Mon Sep 17 00:00:00 2001 From: Vftdan Date: Wed, 2 Oct 2024 18:47:09 +0200 Subject: [PATCH] Added Makefile for img2cpi and wsvpn FIXME: downgrade mongoose submodule or fix wsvpn --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0ec1f65 --- /dev/null +++ b/Makefile @@ -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