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