This commit is contained in:
Imbus 2025-06-15 21:20:40 +02:00
parent 77a8a6bb74
commit 5274372180
4 changed files with 160 additions and 0 deletions

14
hashmap/Makefile Normal file
View file

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