summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 26364af..4f7c082 100644
--- a/Makefile
+++ b/Makefile
@@ -39,12 +39,16 @@ ALL_DEPS = $(addsuffix .dep, $(notdir $(basename $(DALOS_CLI_SOURCES))))
TARGET=Dalos-cli.$(BINEXT)
-all: dep $(TARGET)
+all: dep Balau $(TARGET)
strip: $(TARGET)
$(STRIP) $(TARGET)
-Balau: Balau/libBalau.a
+Balau:
+ $(MAKE) -C Balau
+
+tests:
+ $(MAKE) -C Balau tests
Balau/libBalau.a:
$(MAKE) -C Balau
@@ -66,4 +70,4 @@ clean:
rm -f $(ALL_OBJECTS) $(ALL_DEPS) $(TARGET)
$(MAKE) -C Balau clean
-.PHONY: clean strip Balau
+.PHONY: clean strip Balau tests all