Skip to content

Commit

Permalink
proper syntax for a one liner shell for
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo committed Mar 10, 2018
1 parent 1454ed2 commit a665672
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ lib:

install: lib
$(MAKE) -C common install
for i in ${plugins} ; do \
$(MAKE) -C $$i install \
for i in ${plugins}; do \
$(MAKE) -C $$i install; \
done

omtlmlib: lib
Expand All @@ -38,6 +38,6 @@ clean:
rm -rf $(BINDIR)/*.dll
$(MAKE) -C common clean
cd 3rdParty; $(MAKE) clean
for i in ${allplugins} ; do \
$(MAKE) -C $$i clean \
for i in ${allplugins}; do \
$(MAKE) -C $$i clean; \
done
2 changes: 1 addition & 1 deletion Modelica/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ EXT_OBJS = Plugin/PluginImplementer.o \
coordTransform.o \
double3.o \
double33.o \
tostr.o
tostr.o

ABIOBJS=$(OBJS:%.o= $(ABI)/%.o) $(EXT_OBJS:%.o= $(ABI)/%.o)

Expand Down

0 comments on commit a665672

Please sign in to comment.