unify the module prefix for analogfunction.[ch] filenames

this is an extension of commit
  fixup commit "Remove more adms generated files", ...
This commit is contained in:
rlar 2017-09-23 11:22:20 +02:00
parent e981e6efda
commit 4df2da5ddb
1 changed files with 8 additions and 6 deletions

View File

@ -1073,8 +1073,9 @@ double $(module)_d_$(function) (<admst:join select="variable[input='yes']" separ
<admst:variable name="globalanalogfunction"/> <admst:variable name="globalanalogfunction"/>
<admst:open file="$(module).analogfunction.h">/* <admst:for-each select="/module">
* $(module).analogfunction.h - analog function header <admst:open file="%(attribute[name='ngspicename']/value).analogfunction.h">/*
* %(attribute[name='ngspicename']/value).analogfunction.h - analog function header
* *
* This is free software; you can redistribute it and/or modify * This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -1091,10 +1092,10 @@ double $(module)_d_$(function) (<admst:join select="variable[input='yes']" separ
#endif /* __$(module)_ANALOGFUNCTION_H__ */ #endif /* __$(module)_ANALOGFUNCTION_H__ */
<admst:text format="\n"/> <admst:text format="\n"/>
</admst:open> </admst:open>
<admst:message format="$(module).analogfunction.h created\n"/> <admst:message format="%(attribute[name='ngspicename']/value).analogfunction.h created\n"/>
<admst:open file="$(module).analogfunction.c">/* <admst:open file="%(attribute[name='ngspicename']/value).analogfunction.c">/*
* $(module).analogfunction.c - analog function implementations * %(attribute[name='ngspicename']/value).analogfunction.c - analog function implementations
* *
* This is free software; you can redistribute it and/or modify * This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -1116,5 +1117,6 @@ double $(module)_d_$(function) (<admst:join select="variable[input='yes']" separ
<admst:apply-templates select="/module" match="analogfunctionC"/> <admst:apply-templates select="/module" match="analogfunctionC"/>
<admst:text format="\n"/> <admst:text format="\n"/>
</admst:open> </admst:open>
<admst:message format="$(module).analogfunction.c created\n"/> <admst:message format="%(attribute[name='ngspicename']/value).analogfunction.c created\n"/>
</admst:for-each>
</admst> </admst>