source: Sophya/trunk/SophyaLib/Mgr/makefileuser.awk@ 3819

Last change on this file since 3819 was 2437, checked in by cmv, 22 years ago

chgt DPC...REP en SOPHYA...REP et EROSCXX en SOPHYACXX cmv 17/09/2003

File size: 532 bytes
RevLine 
[218]1BEGIN {change=0;}
[2437]2/^PP := \$\{SOPHYADEVREP\}\/\$\{MACHDIR\}\// {
3 print "PP := \$\{SOPHYABASEREP\}\/\$\{MACHDIR\}\/";
[218]4 print "PPH := \$\{HOME\}\/\$\{MACHDIR\}\/";
5 change=1;
6}
7/^OBJ := \$\{PP\}\/Objs\// {
8 print "OBJ := \$\{PPH\}\/Objs\/";
9 change=1;
10}
11/^EXE := \$\{PP\}\/Exec\// {
12 print "EXE := \$\{PPH\}\/Exec\/";
13 change=1;
14}
[2437]15/^INC := \$\{SOPHYADEVREP\}\/Include\// {
16 print "INC := \$\{SOPHYABASEREP\}\/Include\/";
[218]17 change=1;
18}
19{
20 if(change==0) print $0
21 change=0;
22}
23END {
24print "# fin gene auto MakefileUser.h"
25}
Note: See TracBrowser for help on using the repository browser.