diff options
author | bloodstalker <thabogre@gmail.com> | 2020-03-06 13:15:28 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-03-06 13:15:28 +0000 |
commit | 0855856d22e074d782e899b4bd465fe1d90e8a9a (patch) | |
tree | 6eda0d211127fd2a0eea8fd58c519b435e317542 | |
parent | coverity fix (diff) | |
download | cgrep-0855856d22e074d782e899b4bd465fe1d90e8a9a.tar.gz cgrep-0855856d22e074d782e899b4bd465fe1d90e8a9a.zip |
fixes #2, fixes #4
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | makefile | 2 |
2 files changed, 1 insertions, 3 deletions
@@ -89,8 +89,6 @@ For an up-to-date list, you can run `cgrep --help`. ## Known Issues - * building cgrep with `-j` will not work because bad makefile. - ## License [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fbloodstalker%2Fcgrep.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fbloodstalker%2Fcgrep?ref=badge_large) @@ -98,7 +98,7 @@ depend:.depend -include ./.depend -%.o:%.cpp +%.o:%.cpp pch.hpp.gch $(CXX) -include-pch pch.hpp.gch $(CXX_FLAGS) -c $< -o $@ %.odbg:%.cpp |