Skip to content

Commit 0fb5c97

Browse files
committed
Try to do more things in parallel
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18384 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent c44e86b commit 0fb5c97

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Compiler/Makefile.compiler_subdirs.common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SUBDIRS = runtime parser modpar
1313
SRCHSRCDIR = $(SRCH:%.h=$(srcdir)/%.h)
1414

1515
.SUFFIXES: .o .mo .h .c
16-
.PHONY: all vctarget absyn_subdir clean reallyclean $(SUBDIRS)
16+
.PHONY: all vctarget absyn_subdir clean reallyclean nolink $(SUBDIRS)
1717

1818
vpath %.mo $(FRONTEND_DIR)
1919
vpath %.mo $(BACKEND_DIR)

Compiler/omc_release/Makefile.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ include $(srcdir)/Makefile.compiler_subdirs.common
4242

4343
$(PROG): $(SRCO) $(SUBDIRS)
4444
$(OMPCC) $(CFLAGS) -o $(PROG)$(EXEEXT) $(SRCO) $(AST) $(RTOBJ) $(LDFLAGS) $(FMILIB) -lstdc++
45+
46+
nolink: $(SRCO) $(SUBDIRS)

Makefile.in

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ settings:
4848

4949
omc: @OMCTARGET@
5050

51-
omc-rml: omc-diff interactive docs fmi fmil opencl_rt lis
52-
(cd Compiler && $(MAKE) -f Makefile release)
51+
omc-rml: omc-diff interactive docs fmi fmil opencl_rt lis omc-rml-nolink
52+
$(MAKE) -C Compiler -f Makefile release
5353
$(MAKE) omlibrary
54+
omc-rml-nolink:
55+
$(MAKE) -C Compiler/omc_release
5456

5557
boehm-gc-lib: @LIBGC@
5658
build/lib/omc/libgc.so: 3rdParty/gc-7.2/.libs/libgc.so mkbuilddirs

0 commit comments

Comments
 (0)