From f4c5fb24507080506741b8ac2c6b027b401d02c8 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Thu, 8 Jan 2026 01:01:17 +0100 Subject: new esp32 tunnel driver --- yocto/esp32tun/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 yocto/esp32tun/Makefile (limited to 'yocto/esp32tun/Makefile') diff --git a/yocto/esp32tun/Makefile b/yocto/esp32tun/Makefile new file mode 100755 index 0000000..574c480 --- /dev/null +++ b/yocto/esp32tun/Makefile @@ -0,0 +1,15 @@ +#CFLAGS = +LDFLAGS = -pthread -lgpiod +TARGET = esp32tun +obj = esp32tun.o + +all: $(TARGET) + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +$(TARGET): $(obj) + $(CC) $(obj) $(LDFLAGS) -o $@ + +clean: + rm -f $(TARGET) *.o -- cgit v1.2.3