10 lines
138 B
Makefile
10 lines
138 B
Makefile
|
all: hello_world
|
||
|
|
||
|
hello_world: hello_world.o
|
||
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
|
||
|
|
||
|
clean:
|
||
|
rm -f hello_world hello_world.o
|
||
|
|
||
|
.SUFFIXES: .c
|