summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-02-03 23:09:04 +0100
committertomsmeding <tom.smeding@gmail.com>2017-02-03 23:09:04 +0100
commitb3ad2e88c9462391fb6d323f6f7737ed5ceedb46 (patch)
tree925a32579ef9368c378368f8d9bf3842ec6ca65c /Makefile
parent7c785439fca59b3801ca2a1118ae25a98d03750d (diff)
Progress
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4e9ed24..5bfd9c0 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ remake: clean
$(TARGET): $(patsubst %.cpp,%.o,$(wildcard *.cpp))
- $(CXX) -o $@ $<
+ $(CXX) -o $@ $^
%.o: %.cpp $(wildcard *.h)
$(CXX) $(CXXFLAGS) -c -o $@ $<