summaryrefslogtreecommitdiff
path: root/yocto/esp32tun/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2026-01-08 01:01:17 +0100
committerUros Majstorovic <majstor@majstor.org>2026-01-08 01:01:17 +0100
commitf4c5fb24507080506741b8ac2c6b027b401d02c8 (patch)
treeca9ce3d7f5db62df2e7b3f2ffd7b65f8e35b98aa /yocto/esp32tun/Makefile
parentb9a36b4bcc6ba144c8376172083e00bbdfa9ec78 (diff)
new esp32 tunnel driverHEADmaster
Diffstat (limited to 'yocto/esp32tun/Makefile')
-rwxr-xr-xyocto/esp32tun/Makefile15
1 files changed, 15 insertions, 0 deletions
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