Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/tendra4/src/tools/tcc/GEN_MF – Rev 2

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#!/bin/sh
2
 
3
BASE=/u/g/release/Source
4
SRC=${BASE}/src/tools/tcc
5
 
6
SED=/tmp/sed$$
7
cat > ${SED} << EOF
8
1,\$s/\${LINK_CC} -o \${NAME}/&.new/
9
/\${NAME}.new/a\\
10
	\${REMOVE} \${NAME}\\
11
	\${MOVE} \${NAME}.new \${NAME}
12
EOF
13
 
14
make_mf\
15
    +A BASE=${BASE}\
16
    +A SRC=${SRC}\
17
    +W ...\
18
    -o .../tcc1\
19
    -Yxpg4 -Xs\
20
    -I ${SRC}\
21
    ${SRC}/*.c |\
22
    sed -f ${SED} > Makefile
23
 
24
rm -f ${SED}