# HG changeset patch # User Olaf Wintermann <olaf.wintermann@gmail.com> # Date 1743326904 -7200 # Node ID 21f8a7656f6a7124c618a4293e91ee17a83308c8 # Parent 951b92ce3708dbe00b3f78fd8ae91397eb6ce80f add prefix to common object files diff -r 951b92ce3708 -r 21f8a7656f6a ui/Makefile --- a/ui/Makefile Sun Mar 30 10:45:56 2025 +0200 +++ b/ui/Makefile Sun Mar 30 11:28:24 2025 +0200 @@ -42,6 +42,6 @@ include $(TOOLKIT)/Makefile -$(COMMON_OBJPRE)%$(OBJ_EXT): common/%.c +$(COMMON_OBJPRE)uic_%$(OBJ_EXT): common/%.c $(CC) -o $@ -c -I../ucx/ $(CFLAGS) $(TK_CFLAGS) $< diff -r 951b92ce3708 -r 21f8a7656f6a ui/common/objs.mk --- a/ui/common/objs.mk Sun Mar 30 10:45:56 2025 +0200 +++ b/ui/common/objs.mk Sun Mar 30 11:28:24 2025 +0200 @@ -41,6 +41,6 @@ COMMON_OBJ += threadpool$(OBJ_EXT) COMMON_OBJ += condvar$(OBJ_EXT) -TOOLKITOBJS += $(COMMON_OBJ:%=$(COMMON_OBJPRE)%) +TOOLKITOBJS += $(COMMON_OBJ:%=$(COMMON_OBJPRE)uic_%) TOOLKITSOURCE += $(COMMON_OBJ:%$(OBJ_EXT)=common/%.c)