6 lines
61 B
Makefile
6 lines
61 B
Makefile
|
all: main
|
||
|
|
||
|
files = src/main.c
|
||
|
|
||
|
main:
|
||
|
cc $(files) -o out/why2
|