make/Makefile.mk

branch
newapi
changeset 178
7c3ff86ee9d4
parent 174
0358f1d9c506
child 942
488178e3e328
--- a/make/Makefile.mk	Sun Apr 16 10:20:21 2023 +0200
+++ b/make/Makefile.mk	Tue May 23 11:11:28 2023 +0200
@@ -32,7 +32,7 @@
 include config.mk
 
 BUILD_DIRS = build/bin build/lib
-BUILD_DIRS += build/application
+BUILD_DIRS += build/application build/ucx
 BUILD_DIRS += build/ui/common build/ui/$(TOOLKIT)
 
 all: $(BUILD_DIRS) ucx ui application
@@ -41,9 +41,12 @@
 $(BUILD_DIRS):
 	mkdir -p $@
 
-ui: FORCE
+ui: ucx FORCE
 	cd ui; $(MAKE) all
 
+ucx: FORCE
+	cd ucx; $(MAKE) all
+
 application: ui FORCE
 	cd application; $(MAKE)
 

mercurial