5 lines
No EOL
162 B
Makefile
5 lines
No EOL
162 B
Makefile
CC?=gcc
|
|
BIN?=bin/elem
|
|
|
|
make: src/main.c
|
|
$(CC) -ffunction-sections -fdata-sections -Wl,--gc-sections -Os -o $(BIN) src/map.c src/loader.c src/command.c src/main.c
|