5 lines
No EOL
73 B
Makefile
5 lines
No EOL
73 B
Makefile
CC?=gcc
|
|
BIN?=elem
|
|
|
|
make: src/main.c
|
|
$(CC) -o $(BIN) src/map.c src/main.c
|