initial commit

This commit is contained in:
smayzy
2026-03-06 16:29:08 +01:00
commit 52f8330418
6 changed files with 270 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
CC := gcc
CFLAGS := -Wall -Wextra -O2
LDFLAGS :=
SRC := src/main.c
TARGET := can-rpi
.PHONY: all clean
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(TARGET)