8 lines
83 B
Makefile
8 lines
83 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall
|
|
|
|
main: main.o hello_fn.o
|
|
|
|
clean:
|
|
rm -f main main.o hello_fn.o
|