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