5 lines
76 B
Makefile
5 lines
76 B
Makefile
.PHONY: build
|
|
|
|
build: main.out
|
|
main.out: main.o
|
|
$(CXX) $(LDFLAGS) $^ -o $@
|