6 lines
55 B
Makefile
6 lines
55 B
Makefile
all: a.out
|
|
a.out: main.c
|
|
gcc main.c -lm
|
|
run:
|
|
./a.out
|