Skip to content

Commit

Permalink
Don't recompile the parser all the time
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18434 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Dec 6, 2013
1 parent a5815f9 commit 5924511
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Compiler/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SUBDIRS = runtime modpar

.SUFFIXES:
.SUFFIXES: .o .mo .h
.PHONY: all subdirs report vctarget debug release depend clean dclean test reallyclean omc_release simcode builtin OpenModelicaBootstrappingHeader.h
.PHONY: all subdirs report vctarget debug release depend clean dclean test reallyclean omc_release simcode builtin

#all : debug
all : release
Expand Down
6 changes: 4 additions & 2 deletions Compiler/omc_release/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,13 @@ include $(srcdir)/Makefile.compiler_subdirs.common

$(PROG):
$(MAKE) DAE.c
$(MAKE) $(SRCO) $(SUBDIRS)
$(MAKE) allobjs $(SUBDIRS)
$(OMPCC) $(CFLAGS) -o $(PROG)$(EXEEXT) $(SRCO) $(AST) $(RTOBJ) $(LDFLAGS) $(FMILIB) -lstdc++

nolink:
$(MAKE) -C Template
$(MAKE) .depend
$(MAKE) DAE.c
$(MAKE) $(SRCO) $(SUBDIRS)
$(MAKE) allobjs $(SUBDIRS)

allobjs: $(SRCO)

0 comments on commit 5924511

Please sign in to comment.