--- a/make/Makefile.mk Sun May 23 09:44:43 2021 +0200 +++ b/make/Makefile.mk Sat Jan 04 16:38:48 2025 +0100 @@ -1,7 +1,7 @@ # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. # -# Copyright 2013 Olaf Wintermann. All rights reserved. +# Copyright 2023 Olaf Wintermann. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -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,11 +41,11 @@ $(BUILD_DIRS): mkdir -p $@ -ucx: FORCE - cd ucx; $(MAKE) +ui: ucx FORCE + cd ui; $(MAKE) all -ui: FORCE - cd ui; $(MAKE) all +ucx: FORCE + cd ucx; $(MAKE) all application: ui FORCE cd application; $(MAKE)