From b4709429ed88563982412a5a027b92143c37e268 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Thu, 31 Jul 2025 17:12:27 +0300 Subject: Add files --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e760d65 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ + +all: fatvpn fatvpnd + +fatvpn: fatvpn.c config.h common.h shorttypes.h sponge-bob.h + echo -e "\n" + $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS) + +fatvpnd: fatvpnd.c config.h common.h shorttypes.h sponge-bob.h + echo -e "\n" + $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS) + +clean: + rm -f fatvpn fatvpnd -- cgit 1.4.1