hashmapp/Makefile

8 lines
95 B
Makefile
Raw Permalink Normal View History

2026-03-13 02:56:29 +00:00
.PHONY: hashmap
hashmap: main.c
$(CC) -o hashmap -g main.c hashmap.c
clean:
rm -rf hashmap