mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
98bc4decde
Signed-off-by: Alexey Neyman <stilor@att.net>
23 lines
736 B
Diff
23 lines
736 B
Diff
---
|
|
GNUmakefile | 8 ++++++--
|
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
|
|
|
--- a/GNUmakefile
|
|
+++ b/GNUmakefile
|
|
@@ -289,9 +289,13 @@
|
|
dumatest.c tstheap.c thread-test.c testmt.c dumatestpp.cpp testoperators.cpp \
|
|
createconf.c
|
|
|
|
-OBJECTS=dumapp.o duma.o sem_inc.o print.o
|
|
+OBJECTS = duma.o sem_inc.o print.o
|
|
+SO_OBJECTS = duma_so.o sem_inc_so.o print_so.o
|
|
|
|
-SO_OBJECTS=dumapp_so.o duma_so.o sem_inc_so.o print_so.o
|
|
+ifeq ($(DUMA_CPP),1)
|
|
+OBJECTS += dumapp.o
|
|
+SO_OBJECTS += dumapp_so.o
|
|
+endif
|
|
|
|
# Make all the top-level targets the makefile knows about.
|
|
all: libduma.a tstheap$(EXEPOSTFIX) dumatest$(EXEPOSTFIX) thread-test$(EXEPOSTFIX) testmt$(EXEPOSTFIX) dumatestpp$(EXEPOSTFIX) testoperators$(EXEPOSTFIX) $(DUMA_DYN_DEPS)
|