Skip to content

Commit

Permalink
Parallelize cpp runtime builds
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18387 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Dec 3, 2013
1 parent ec2632d commit 7428270
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions SimulationRuntime/cpp/Makefile
Expand Up @@ -9,15 +9,11 @@ builddir_lib=$(top_builddir)/build/lib/omc
builddir_inc=$(top_builddir)/build/include/omc

runtimeCpp:
cd ./Build; echo "change to Build"; \
cmake -D CMAKE_INSTALL_PREFIX:PATH="$(builddir_build)" ../; \
make


cd ./Build && echo "change to Build" && cmake -D CMAKE_INSTALL_PREFIX:PATH="$(builddir_build)" ../
$(MAKE) -C Build

install: runtimeCpp
(cd Build; make install)

(cd Build; $(MAKE) install)

clean:
rm -R -f Build
Expand Down

0 comments on commit 7428270

Please sign in to comment.