summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-08-09 19:17:58 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-08-09 19:17:58 +0200
commit8d796e32510dc00e0b6f25b841bff8425c54dc6b (patch)
tree225383f66c3bc7da445db1aa2396eafe3ee3169f /makefile
parenta9d43a9ffe2feaa368e74154cd4e0cac13fb6efd (diff)
Minor build system fixes
Restore .gitignore generation. Add the default and clean targets for the tests/ directory to the top level makefile.
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index e196fe2..9ec8da3 100644
--- a/makefile
+++ b/makefile
@@ -16,7 +16,7 @@ clean := $(out_base)/.clean
# Build.
#
-$(default): $(out_base)/cli/
+$(default): $(out_base)/cli/ $(out_base)/tests/
# Test.
#
@@ -37,7 +37,7 @@ $(install): $(out_base)/cli/.install \
# Clean.
#
-$(clean): $(out_base)/cli/.clean
+$(clean): $(out_base)/cli/.clean $(out_base)/tests/.clean
$(call include,$(bld_root)/install.make)