Skip to content

Commit

Permalink
Build OMShell & OMOptim from root project.
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed May 11, 2015
1 parent d92b0cb commit 20085af
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile.omdev.mingw
Expand Up @@ -2,7 +2,7 @@ defaultMakefileTarget = Makefile.omdev.mingw
REALPATH = $(realpath .)
OMBUILDDIR=$(REALPATH)/build

.PHONY: omc omc-diff omlibrary-core omplot omedit omnotebook
.PHONY: omc omc-diff omlibrary-core omplot omedit omnotebook omshell omoptim

omc:
$(MAKE) -f $(defaultMakefileTarget) -C OMCompiler OMBUILDDIR=$(OMBUILDDIR)
Expand All @@ -25,6 +25,12 @@ omedit: omplot
omnotebook: omplot
$(MAKE) -f $(defaultMakefileTarget) -C OMNotebook/OMNotebook/OMNotebookGUI OMBUILDDIR=$(OMBUILDDIR)

omshell:
$(MAKE) -f $(defaultMakefileTarget) -C OMShell/OMShell/OMShellGUI OMBUILDDIR=$(OMBUILDDIR)

omoptim: omplot
$(MAKE) -f $(defaultMakefileTarget) -C OMOptim OMBUILDDIR=$(OMBUILDDIR)

clean:
$(MAKE) -f $(defaultMakefileTarget) -C OMCompiler clean OMBUILDDIR=$(OMBUILDDIR)
test ! -d $(OMBUILDDIR) || rm -rf $(OMBUILDDIR)

0 comments on commit 20085af

Please sign in to comment.