Files
box-o-sand/Makefile
T

9 lines
85 B
Makefile

ALL_TARGETS = bin/hello-world
all: $(ALL_TARGETS)
bin/%: src/%.cpp
g++ $^ -o $@