Skip to content

Commit

Permalink
- Use $(MAKE) instead of make (enables parallel make)
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8712 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Apr 20, 2011
1 parent 28aa187 commit c8fbbfd
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Makefile.in
Expand Up @@ -42,31 +42,31 @@ qtclients:
qtclean: qtclean-common
else
omnotebook: mkbuilddirs
make -C OMNotebook/OMNotebookGUI -f Makefile.unix
$(MAKE) -C OMNotebook/OMNotebookGUI -f Makefile.unix
omshell: mkbuilddirs
make -C OMShell/OMShellGUI -f Makefile.unix
$(MAKE) -C OMShell/OMShellGUI -f Makefile.unix
omplotwindow: mkbuilddirs
make -C OMNotebook/OMPlotWindow -f Makefile.unix
$(MAKE) -C OMNotebook/OMPlotWindow -f Makefile.unix
omplot: mkbuilddirs
make -C OMPlot/OMPlotGUI -f Makefile.unix
$(MAKE) -C OMPlot/OMPlotGUI -f Makefile.unix
omedit: mkbuilddirs omplot
make -C OMEdit/OMEditGUI -f Makefile.unix
$(MAKE) -C OMEdit/OMEditGUI -f Makefile.unix
ifeq (@with_paradiseo@,)
omoptim:
@echo "*** OpenModelica configured without support for OMOptim (--without-paradisEO)"
else
omoptim: mkbuilddirs
make -C OMOptim/build -f Makefile.unix
$(MAKE) -C OMOptim/build -f Makefile.unix
endif

qtclients: omnotebook omshell omplotwindow omedit omplot omoptim

qtclean: qtclean-common
make -C OMShell/OMShellGUI -f Makefile.unix clean
make -C OMNotebook/OMPlotWindow -f Makefile.unix clean
make -C OMNotebook/OMNotebookGUI -f Makefile.unix clean
make -C OMEdit/OMEditGUI -f Makefile.unix clean
make -C OMPlot/OMPlotGUI -f Makefile.unix clean
$(MAKE) -C OMShell/OMShellGUI -f Makefile.unix clean
$(MAKE) -C OMNotebook/OMPlotWindow -f Makefile.unix clean
$(MAKE) -C OMNotebook/OMNotebookGUI -f Makefile.unix clean
$(MAKE) -C OMEdit/OMEditGUI -f Makefile.unix clean
$(MAKE) -C OMPlot/OMPlotGUI -f Makefile.unix clean
endif

fix-svn-eol-style:
Expand Down

0 comments on commit c8fbbfd

Please sign in to comment.