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

Last change on this file since 4066 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
Line 
1BEGIN {change=0;}
2/^PP := \$\{SOPHYADEVREP\}\/\$\{MACHDIR\}\// {
3 print "PP := \$\{SOPHYABASEREP\}\/\$\{MACHDIR\}\/";
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}
15/^INC := \$\{SOPHYADEVREP\}\/Include\// {
16 print "INC := \$\{SOPHYABASEREP\}\/Include\/";
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.