]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/conf/machine.awk
xnu-2782.1.97.tar.gz
[apple/xnu.git] / bsd / conf / machine.awk
diff --git a/bsd/conf/machine.awk b/bsd/conf/machine.awk
deleted file mode 100644 (file)
index 3b48762..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-BEGIN {
-       hdr =   "#if\tm68k\n"                           \
-               "#import <m68k/%s/%s>\n"        \
-               "#endif\tm68k\n"                        \
-               "#if\tm88k\n"                           \
-               "#import <m88k/%s/%s>\n"        \
-               "#endif\tm88k\n"
-       hdr =   "#import <m68k/%s/%s>\n"
-}
-/\.h$/ {
-       ofile = sprintf("%s/%s", loc, $1);
-       printf(hdr, dir, $1, dir, $1) > ofile;
-       continue;
-}
-
-{
-       dir = $1; loc = $2;
-}