This commit is contained in:
Imbus 2025-09-10 09:24:02 +02:00
parent 7383d6e0f2
commit 8f4ea26303
4 changed files with 147 additions and 0 deletions

12
crc32/Makefile Normal file
View file

@ -0,0 +1,12 @@
CC ?= gcc
CFLAGS ?= -Wall -O2
TARGET = test.elf
SRC = test.c
$(TARGET): $(SRC)
@echo CC $@
@$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(TARGET)