aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-15 18:40:01 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-15 18:40:01 +0000
commit563cfeb1f96e42dffe6b5151c1722c48da1d4388 (patch)
treeccc2342c5911e5643c5d0db9a5067dbb44021bf6 /makefile
parentchanged yet again (diff)
downloadmutator-563cfeb1f96e42dffe6b5151c1722c48da1d4388.tar.gz
mutator-563cfeb1f96e42dffe6b5151c1722c48da1d4388.zip
reverted the change
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index 5d4e872..8a2f02f 100644
--- a/makefile
+++ b/makefile
@@ -35,13 +35,13 @@ all: $(TARGET) $(TARGET2) $(TARGET0)
$(MAKE) -C tinyxml2
$(TARGET): $(TARGET).o mutator_aux.o
- $(CXX) $^ -o $(LD_FLAGS) $@
+ $(CXX) $^ $(LD_FLAGS) -o $@
$(TARGET2): $(TARGET2).o mutator_aux.o
- $(CXX) $^ -o $(LD_FLAGS) $@
+ $(CXX) $^ $(LD_FLAGS) -o $@
$(TARGET0): $(TARGET0).o mutator_aux.o
- $(CXX) $^ -o $(LD_FLAGS) $@
+ $(CXX) $^ $(LD_FLAGS) -o $@
clean:
rm -f *.o *~ $(TARGET0) $(TARGET) $(TARGET2)