summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-01-21 09:56:07 +0200
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-01-21 09:56:38 +0200
commitdef881f37f26d6f3b9bf1a9c077dae4916717157 (patch)
tree6b378f9c7de325ad8d3bfb57b1e5d354d7e529fa /Makefile
parentf482f4e2ebdff76d1818822fd98f7941787745d8 (diff)
Refactored Resource
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 80063bc..387abfa 100644
--- a/Makefile
+++ b/Makefile
@@ -7,19 +7,19 @@ LIB = build/libresourceqt.so.1.0.0
all: $(MAKEFILE)
$(MAKE) -f $(MAKEFILE) all
- cd tests; $(MAKE) all
+ $(MAKE) -C tests all
clean:
$(RM) $(MAKEFILE)
$(RM) -r build
- cd tests; $(MAKE) clean
+ $(MAKE) -C tests clean
install: $(MAKEFILE)
$(MAKE) -f $(MAKEFILE) install
- cd tests; $(MAKE) install
+ $(MAKE) -C tests install
tests: force
- cd tests; $(MAKE) tests
+ $(MAKE) -C tests tests
force: ;