diff options
| author | Uros Majstorovic <majstor@majstor.org> | 2026-01-08 01:01:17 +0100 |
|---|---|---|
| committer | Uros Majstorovic <majstor@majstor.org> | 2026-01-08 01:01:17 +0100 |
| commit | f4c5fb24507080506741b8ac2c6b027b401d02c8 (patch) | |
| tree | ca9ce3d7f5db62df2e7b3f2ffd7b65f8e35b98aa /yocto/esp32tun/Makefile | |
| parent | b9a36b4bcc6ba144c8376172083e00bbdfa9ec78 (diff) | |
Diffstat (limited to 'yocto/esp32tun/Makefile')
| -rwxr-xr-x | yocto/esp32tun/Makefile | 15 |
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 |
