6 lines
75 B
Makefile
6 lines
75 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
build: main.out
|
||
|
main.out: main.o
|
||
|
$(CC) $(LDFLAGS) $^ -o $@
|