summaryrefslogtreecommitdiff
path: root/yocto/esp32tun/Makefile
diff options
context:
space:
mode:
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