aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--makefile2
2 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index 306cb08..9c00d43 100644
--- a/README.md
+++ b/README.md
@@ -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)
diff --git a/makefile b/makefile
index a90f752..95243a1 100644
--- a/makefile
+++ b/makefile
@@ -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