1999-03-23 13:20:01 +03:00
|
|
|
# $NetBSD: list2sh.awk,v 1.3 1999/03/23 10:20:01 leo Exp $
|
1995-12-19 01:47:26 +03:00
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
printf("cd ${OBJDIR}\n");
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
/^$/ || /^#/ {
|
|
|
|
print $0;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "COPY" {
|
|
|
|
printf("echo '%s'\n", $0);
|
|
|
|
printf("rm -f ${TARGDIR}/%s\n", $3);
|
|
|
|
printf("cp %s ${TARGDIR}/%s\n", $2, $3);
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "LINK" {
|
|
|
|
printf("echo '%s'\n", $0);
|
1996-05-04 19:45:30 +04:00
|
|
|
for (i = 3; i <= NF; i++) {
|
|
|
|
printf("rm -f ${TARGDIR}/%s\n", $i);
|
|
|
|
printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $i);
|
|
|
|
}
|
1995-12-19 01:47:26 +03:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "SYMLINK" {
|
|
|
|
printf("echo '%s'\n", $0);
|
1996-05-04 19:45:30 +04:00
|
|
|
for (i = 3; i <= NF; i++) {
|
|
|
|
printf("rm -f ${TARGDIR}/%s\n", $i);
|
|
|
|
printf("(cd ${TARGDIR}; ln -s %s %s)\n", $2, $i);
|
|
|
|
}
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "ARGVLINK" {
|
|
|
|
# crunchgen directive; ignored here
|
|
|
|
next;
|
|
|
|
}
|
1999-03-23 13:20:01 +03:00
|
|
|
$1 == "LIBS" {
|
|
|
|
# crunchgen directive; ignored here
|
|
|
|
next;
|
|
|
|
}
|
1996-05-04 19:45:30 +04:00
|
|
|
$1 == "SRCDIRS" {
|
|
|
|
# crunchgen directive; ignored here
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "CRUNCHSPECIAL" {
|
|
|
|
# crunchgen directive; ignored here
|
1995-12-19 01:47:26 +03:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "COPYDIR" {
|
|
|
|
printf("echo '%s'\n", $0);
|
|
|
|
printf("(cd ${TARGDIR}/%s && find . ! -name . | xargs /bin/rm -rf)\n",
|
|
|
|
$3);
|
|
|
|
printf("(cd %s && pax -pe -rw . ${TARGDIR}/%s)\n", $2, $3);
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
$1 == "SPECIAL" {
|
|
|
|
printf("echo '%s'\n", $0);
|
|
|
|
printf("(cd ${TARGDIR};");
|
|
|
|
for (i = 2; i <= NF; i++)
|
|
|
|
printf(" %s", $i);
|
|
|
|
printf(")\n");
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
printf("echo '%s'\n", $0);
|
|
|
|
printf("echo 'Unknown keyword \"%s\" at line %d of input.'\n", $1, NR);
|
|
|
|
printf("exit 1\n");
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
END {
|
|
|
|
printf("\n");
|
|
|
|
printf("exit 0\n");
|
|
|
|
exit 0;
|
|
|
|
}
|