6 lines
54 B
Makefile
6 lines
54 B
Makefile
|
CC := gcc
|
||
|
BIN := app
|
||
|
|
||
|
|
||
|
all: main.c
|
||
|
$(CC) $^ -o $(BIN)
|