diff options
author | bloodstalker <thabogre@gmail.com> | 2020-04-21 16:51:50 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-04-21 16:51:50 +0000 |
commit | dbbbb3eebcb99116b9afd768967e7492882737a9 (patch) | |
tree | b312d577582141efa1e735f663ed5fc5e6cec217 /makefile | |
parent | removed the debug prints. boost is no longer a dependency. (diff) | |
download | cgrep-dbbbb3eebcb99116b9afd768967e7492882737a9.tar.gz cgrep-dbbbb3eebcb99116b9afd768967e7492882737a9.zip |
work in progress
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -84,7 +84,7 @@ LD_FLAGS+=$(EXTRA_LD_FLAGS) .PHONY:all clean help ASM SO TAGS -all: pch.hpp.gch $(TARGET) +all: $(TARGET) everything:$(TARGET) A ASM SO $(TARGET)-dbg TAGS $(TARGET)-cov @@ -98,18 +98,15 @@ depend:.depend -include ./.depend -%.o:%.cpp pch.hpp.gch - $(CXX) -include-pch pch.hpp.gch $(CXX_FLAGS) -c $< -o $@ +%.o:%.cpp + $(CXX) $(CXX_FLAGS) -c $< -o $@ %.odbg:%.cpp $(CXX) $(CXX_FLAGS) -g -c $< -o $@ -%.ocov:%.cpp pch.hpp.gch +%.ocov:%.cpp $(CXX) $(CXX_FLAGS) $(COV_CXX) -c $< -o $@ -pch.hpp.gch: pch.hpp - $(CXX) $(CXX_FLAGS) -c $< -o $@ - ./cfe-extra/cfe_extra.o:./cfe-extra/cfe_extra.cpp $(CXX) $(CXX_FLAGS) -c $< -o $@ |