summaryrefslogtreecommitdiff
path: root/yocto/esp32d/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2026-01-08 01:00:36 +0100
committerUros Majstorovic <majstor@majstor.org>2026-01-08 01:00:36 +0100
commitb9a36b4bcc6ba144c8376172083e00bbdfa9ec78 (patch)
tree23c70f409e6ed2858f0bfd3d01e2b0fff660e11f /yocto/esp32d/Makefile
parent46b08fc235f3f068034355970697acc0956e5c99 (diff)
removed obsolete
Diffstat (limited to 'yocto/esp32d/Makefile')
-rw-r--r--yocto/esp32d/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/yocto/esp32d/Makefile b/yocto/esp32d/Makefile
deleted file mode 100644
index 677d09d..0000000
--- a/yocto/esp32d/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-#CFLAGS =
-LDFLAGS = -pthread -lgpiod
-TARGET = esp32d
-obj = msgq.o spi.o tun.o
-
-all: $(TARGET)
-
-%.o: %.c %.h
- $(CC) $(CFLAGS) -c $<
-
-$(TARGET): $(obj)
- $(CC) $(obj) $(LDFLAGS) -o $@
-
-clean:
- rm -f $(TARGET) *.o