diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2015-01-24 16:55:41 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2015-01-24 16:55:41 +0100 |
commit | 0373cb433cdc80b55a43f097d2fd16b08056f638 (patch) | |
tree | 92277f8d30ccf0b75a11912b762c601a101675e2 /Makefile | |
parent | 02a27877d3d388540ba7b6f24da5df908fad8934 (diff) |
Remove dependencies from $(BUILDDIR) target
There's no need to reconfigure if html_unescape.h or case_fold_switch.inc
were changed.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ cmake_build: $(BUILDDIR) @make -j2 -C $(BUILDDIR) @echo "Binaries can be found in $(BUILDDIR)/src" -$(BUILDDIR): $(SRCDIR)/html_unescape.h $(SRCDIR)/case_fold_switch.inc +$(BUILDDIR): @cmake --version > /dev/null || (echo "You need cmake to build this program: http://www.cmake.org/download/" && exit 1) mkdir -p $(BUILDDIR); \ cd $(BUILDDIR); \ |