Skip to content

Commit

Permalink
changes to:
Browse files Browse the repository at this point in the history
- .project (removed the MDT builder) (uses OpenModelica as project root)
- builder OMDev-MINGW-OpenModelicaBuilder.launch (now builds from mo directly and has as OMDev path /c/OMdev)
- Makefile.omdev.mingw (don't copy serialization files are they are not generated, print the dependency generation time)
- rml2sig/rmldep-new.sh give some messages and generation time


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2211 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Mar 13, 2006
1 parent 9b0cb2f commit 791ef35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 17 deletions.
12 changes: 1 addition & 11 deletions .project
@@ -1,20 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>trunk</name>
<name>OpenModelica</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/org.modelica.mdt.syntaxChecker.launch</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
Expand Down
13 changes: 7 additions & 6 deletions Compiler/rml2sig/rmldep-new.sh
Expand Up @@ -6,6 +6,7 @@
# Changed by Adrian Pop, adrpo@ida.liu.se, 2006-02-02
#

date
mydir="`dirname $0`"

if [ ! "$#" -eq 1 ]; then
Expand All @@ -21,19 +22,19 @@ else
fi

if [ ! -f $sig_file ]; then
# echo "Sig file does not exist...";
echo "Sig file does not exist...";
rml -fdump-interface $1 > $sig_file;
else
# echo "Generates tmp sig."
echo "Generates tmp sig."
rml -fdump-interface $1 > $tmp_file
# echo "Diffing"
echo "Diffing"
diff $tmp_file $sig_file > /dev/null
if [ $? -eq 0 ]; then
# echo "Same files"
echo "Interface is the same"
rm $tmp_file
else
# echo "Interface changed"
echo "Interface has changed"
\mv $tmp_file $sig_file
fi
fi

date

0 comments on commit 791ef35

Please sign in to comment.