BSD 4_3 release
[unix-history] / usr / src / etc / config / mkmakefile.c
index 573827b..7b643f9 100644 (file)
@@ -1,4 +1,12 @@
-/*     mkmakefile.c    1.26    83/02/21        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+static char sccsid[] = "@(#)mkmakefile.c       5.9 (Berkeley) 5/6/86";
+#endif not lint
 
 /*
  * Build the makefile for the system, from
 
 /*
  * Build the makefile for the system, from
        }
 
 static struct file_list *fcur;
        }
 
 static struct file_list *fcur;
+char *tail();
 
 /*
 
 /*
- * Lookup a file, by make.
+ * Lookup a file, by name.
  */
 struct file_list *
 fl_lookup(file)
  */
 struct file_list *
 fl_lookup(file)
@@ -37,6 +46,22 @@ fl_lookup(file)
        return (0);
 }
 
        return (0);
 }
 
+/*
+ * Lookup a file, by final component name.
+ */
+struct file_list *
+fltail_lookup(file)
+       register char *file;
+{
+       register struct file_list *fp;
+
+       for (fp = ftab ; fp != 0; fp = fp->f_next) {
+               if (eq(tail(fp->f_fn), tail(file)))
+                       return (fp);
+       }
+       return (0);
+}
+
 /*
  * Make a new file list entry
  */
 /*
  * Make a new file list entry
  */
@@ -48,6 +73,8 @@ new_fent()
        fp = (struct file_list *) malloc(sizeof *fp);
        fp->f_needs = 0;
        fp->f_next = 0;
        fp = (struct file_list *) malloc(sizeof *fp);
        fp->f_needs = 0;
        fp->f_next = 0;
+       fp->f_flags = 0;
+       fp->f_type = 0;
        if (fcur == 0)
                fcur = ftab = fp;
        else
        if (fcur == 0)
                fcur = ftab = fp;
        else
@@ -57,6 +84,14 @@ new_fent()
 }
 
 char   *COPTS;
 }
 
 char   *COPTS;
+static struct users {
+       int     u_default;
+       int     u_min;
+       int     u_max;
+} users[] = {
+       { 24, 8, 1024 },                /* MACHINE_VAX */
+};
+#define        NUSERS  (sizeof (users) / sizeof (users[0]))
 
 /*
  * Build the makefile from the skeleton
 
 /*
  * Build the makefile from the skeleton
@@ -66,48 +101,24 @@ makefile()
        FILE *ifp, *ofp;
        char line[BUFSIZ];
        struct opt *op;
        FILE *ifp, *ofp;
        char line[BUFSIZ];
        struct opt *op;
+       struct users *up;
 
        read_files();
 
        read_files();
-       strcpy(line, "../conf/makefile.");
+       strcpy(line, "../conf/Makefile.");
        (void) strcat(line, machinename);
        ifp = fopen(line, "r");
        if (ifp == 0) {
                perror(line);
                exit(1);
        }
        (void) strcat(line, machinename);
        ifp = fopen(line, "r");
        if (ifp == 0) {
                perror(line);
                exit(1);
        }
-       ofp = fopen(path("makefile"), "w");
+       ofp = fopen(path("Makefile"), "w");
        if (ofp == 0) {
        if (ofp == 0) {
-               perror(path("makefile"));
+               perror(path("Makefile"));
                exit(1);
        }
                exit(1);
        }
-#ifdef vax
-       if (maxusers == 0) {
-               printf("maxusers not specified; 24 assumed\n");
-               maxusers = 24;
-       } else if (maxusers < 8) {
-               printf("minimum of 8 maxusers assumed\n");
-               maxusers = 8;
-       } else if (maxusers > 128) {
-               printf("maxusers truncated to 128\n");
-               maxusers = 128;
-       }
-#endif
-#ifdef sun
-       if (maxusers == 0) {
-               printf("maxusers not specified; 8 assumed\n");
-               maxusers = 8;
-       } else if (maxusers < 2) {
-               printf("minimum of 2 maxusers assumed\n");
-               maxusers = 2;
-       } else if (maxusers > 32) {
-               printf("maxusers truncated to 32\n");
-               maxusers = 32;
-       }
-#endif
        fprintf(ofp, "IDENT=-D%s", raise(ident));
        if (profiling)
                fprintf(ofp, " -DGPROF");
        fprintf(ofp, "IDENT=-D%s", raise(ident));
        if (profiling)
                fprintf(ofp, " -DGPROF");
-       fprintf(ofp, " -DMAXUSERS=%d", maxusers);
        if (cputype == 0) {
                printf("cpu type must be specified\n");
                exit(1);
        if (cputype == 0) {
                printf("cpu type must be specified\n");
                exit(1);
@@ -124,15 +135,32 @@ makefile()
        fprintf(ofp, "\n");
        if (hadtz == 0)
                printf("timezone not specified; gmt assumed\n");
        fprintf(ofp, "\n");
        if (hadtz == 0)
                printf("timezone not specified; gmt assumed\n");
-       fprintf(ofp, "PARAM=-DTIMEZONE=%d -DDST=%d\n",
-           timezone, dst);
+       if ((unsigned)machine > NUSERS) {
+               printf("maxusers config info isn't present, using vax\n");
+               up = &users[MACHINE_VAX-1];
+       } else
+               up = &users[machine-1];
+       if (maxusers == 0) {
+               printf("maxusers not specified; %d assumed\n", up->u_default);
+               maxusers = up->u_default;
+       } else if (maxusers < up->u_min) {
+               printf("minimum of %d maxusers assumed\n", up->u_min);
+               maxusers = up->u_min;
+       } else if (maxusers > up->u_max)
+               printf("warning: maxusers > %d (%d)\n", up->u_max, maxusers);
+       fprintf(ofp, "PARAM=-DTIMEZONE=%d -DDST=%d -DMAXUSERS=%d\n",
+           timezone, dst, maxusers);
+       for (op = mkopt; op; op = op->op_next)
+               fprintf(ofp, "%s=%s\n", op->op_name, op->op_value);
        while (fgets(line, BUFSIZ, ifp) != 0) {
                if (*line == '%')
                        goto percent;
                if (profiling && strncmp(line, "COPTS=", 6) == 0) {
                        register char *cp;
 
        while (fgets(line, BUFSIZ, ifp) != 0) {
                if (*line == '%')
                        goto percent;
                if (profiling && strncmp(line, "COPTS=", 6) == 0) {
                        register char *cp;
 
-                       fprintf(ofp, "GPROF.EX=/usr/src/lib/libc/csu/gmon.ex\n");
+                       fprintf(ofp, 
+                           "GPROF.EX=/usr/src/lib/libc/%s/csu/gmon.ex\n",
+                           machinename);
                        cp = index(line, '\n');
                        if (cp)
                                *cp = 0;
                        cp = index(line, '\n');
                        if (cp)
                                *cp = 0;
@@ -175,12 +203,12 @@ makefile()
 read_files()
 {
        FILE *fp;
 read_files()
 {
        FILE *fp;
-       register struct file_list *tp;
+       register struct file_list *tp, *pf;
        register struct device *dp;
        register struct device *dp;
+       register struct opt *op;
        char *wd, *this, *needs, *devorprof;
        char fname[32];
        char *wd, *this, *needs, *devorprof;
        char fname[32];
-       int nreqs;
-       int first = 1;
+       int nreqs, first = 1, configdep, isdup;
 
        ftab = 0;
        (void) strcpy(fname, "files");
 
        ftab = 0;
        (void) strcpy(fname, "files");
@@ -191,15 +219,25 @@ openit:
                exit(1);
        }
 next:
                exit(1);
        }
 next:
-       /* filename     [ standard | optional dev* ] [ device-driver ] */
+       /*
+        * filename     [ standard | optional ] [ config-dependent ]
+        *      [ dev* | profiling-routine ] [ device-driver]
+        */
        wd = get_word(fp);
        if (wd == (char *)EOF) {
                (void) fclose(fp);
        wd = get_word(fp);
        if (wd == (char *)EOF) {
                (void) fclose(fp);
-               if (first) {
+               if (first == 1) {
                        (void) sprintf(fname, "files.%s", machinename);
                        (void) sprintf(fname, "files.%s", machinename);
-                       first = 0;
+                       first++;
                        goto openit;
                }
                        goto openit;
                }
+               if (first == 2) {
+                       (void) sprintf(fname, "files.%s", raise(ident));
+                       first++;
+                       fp = fopen(fname, "r");
+                       if (fp != 0)
+                               goto next;
+               }
                return;
        }
        if (wd == 0)
                return;
        }
        if (wd == 0)
@@ -211,84 +249,134 @@ next:
                    fname, this);
                exit(1);
        }
                    fname, this);
                exit(1);
        }
-       if (fl_lookup(this)) {
-               printf("%s: Duplicate file %s.\n",
-                   fname, this);
-               exit(1);
-       }
+       if ((pf = fl_lookup(this)) && (pf->f_type != INVISIBLE || pf->f_flags))
+               isdup = 1;
+       else
+               isdup = 0;
+       tp = 0;
+       if (first == 3 && (tp = fltail_lookup(this)) != 0)
+               printf("%s: Local file %s overrides %s.\n",
+                   fname, this, tp->f_fn);
        nreqs = 0;
        devorprof = "";
        nreqs = 0;
        devorprof = "";
+       configdep = 0;
        needs = 0;
        if (eq(wd, "standard"))
                goto checkdev;
        if (!eq(wd, "optional")) {
        needs = 0;
        if (eq(wd, "standard"))
                goto checkdev;
        if (!eq(wd, "optional")) {
-               printf("%s: %s must be optional or standard\n",
-                   fname, this);
+               printf("%s: %s must be optional or standard\n", fname, this);
                exit(1);
        }
 nextopt:
        next_word(fp, wd);
        if (wd == 0)
                goto doneopt;
                exit(1);
        }
 nextopt:
        next_word(fp, wd);
        if (wd == 0)
                goto doneopt;
+       if (eq(wd, "config-dependent")) {
+               configdep++;
+               goto nextopt;
+       }
        devorprof = wd;
        if (eq(wd, "device-driver") || eq(wd, "profiling-routine")) {
                next_word(fp, wd);
                goto save;
        }
        nreqs++;
        devorprof = wd;
        if (eq(wd, "device-driver") || eq(wd, "profiling-routine")) {
                next_word(fp, wd);
                goto save;
        }
        nreqs++;
-       if (needs == 0)
+       if (needs == 0 && nreqs == 1)
                needs = ns(wd);
                needs = ns(wd);
+       if (isdup)
+               goto invis;
        for (dp = dtab; dp != 0; dp = dp->d_next)
                if (eq(dp->d_name, wd))
                        goto nextopt;
        for (dp = dtab; dp != 0; dp = dp->d_next)
                if (eq(dp->d_name, wd))
                        goto nextopt;
+       for (op = opt; op != 0; op = op->op_next)
+               if (op->op_value == 0 && opteq(op->op_name, wd)) {
+                       if (nreqs == 1) {
+                               free(needs);
+                               needs = 0;
+                       }
+                       goto nextopt;
+               }
+invis:
        while ((wd = get_word(fp)) != 0)
                ;
        while ((wd = get_word(fp)) != 0)
                ;
-       tp = new_fent();
+       if (tp == 0)
+               tp = new_fent();
        tp->f_fn = this;
        tp->f_type = INVISIBLE;
        tp->f_needs = needs;
        tp->f_fn = this;
        tp->f_type = INVISIBLE;
        tp->f_needs = needs;
+       tp->f_flags = isdup;
        goto next;
        goto next;
+
 doneopt:
        if (nreqs == 0) {
                printf("%s: what is %s optional on?\n",
                    fname, this);
                exit(1);
        }
 doneopt:
        if (nreqs == 0) {
                printf("%s: what is %s optional on?\n",
                    fname, this);
                exit(1);
        }
+
 checkdev:
        if (wd) {
                next_word(fp, wd);
 checkdev:
        if (wd) {
                next_word(fp, wd);
-               if (wd != 0) {
+               if (wd) {
+                       if (eq(wd, "config-dependent")) {
+                               configdep++;
+                               goto checkdev;
+                       }
                        devorprof = wd;
                        next_word(fp, wd);
                }
        }
                        devorprof = wd;
                        next_word(fp, wd);
                }
        }
+
 save:
 save:
-       if (wd != 0) {
+       if (wd) {
                printf("%s: syntax error describing %s\n",
                    fname, this);
                exit(1);
        }
        if (eq(devorprof, "profiling-routine") && profiling == 0)
                goto next;
                printf("%s: syntax error describing %s\n",
                    fname, this);
                exit(1);
        }
        if (eq(devorprof, "profiling-routine") && profiling == 0)
                goto next;
-       tp = new_fent();
+       if (tp == 0)
+               tp = new_fent();
        tp->f_fn = this;
        if (eq(devorprof, "device-driver"))
        tp->f_fn = this;
        if (eq(devorprof, "device-driver"))
-               tp->f_type = DEVICE;
+               tp->f_type = DRIVER;
        else if (eq(devorprof, "profiling-routine"))
                tp->f_type = PROFILING;
        else
                tp->f_type = NORMAL;
        else if (eq(devorprof, "profiling-routine"))
                tp->f_type = PROFILING;
        else
                tp->f_type = NORMAL;
+       tp->f_flags = 0;
+       if (configdep)
+               tp->f_flags |= CONFIGDEP;
        tp->f_needs = needs;
        tp->f_needs = needs;
+       if (pf && pf->f_type == INVISIBLE)
+               pf->f_flags = 1;                /* mark as duplicate */
        goto next;
 }
 
        goto next;
 }
 
+opteq(cp, dp)
+       char *cp, *dp;
+{
+       char c, d;
+
+       for (; ; cp++, dp++) {
+               if (*cp != *dp) {
+                       c = isupper(*cp) ? tolower(*cp) : *cp;
+                       d = isupper(*dp) ? tolower(*dp) : *dp;
+                       if (c != d)
+                               return (0);
+               }
+               if (*cp == 0)
+                       return (1);
+       }
+}
+
 do_objs(fp)
        FILE *fp;
 {
 do_objs(fp)
        FILE *fp;
 {
-       register struct file_list *tp;
+       register struct file_list *tp, *fl;
        register int lpos, len;
        register char *cp, och, *sp;
        register int lpos, len;
        register char *cp, och, *sp;
-       char *tail();
+       char swapname[32];
 
        fprintf(fp, "OBJS=");
        lpos = 6;
 
        fprintf(fp, "OBJS=");
        lpos = 6;
@@ -296,6 +384,13 @@ do_objs(fp)
                if (tp->f_type == INVISIBLE)
                        continue;
                sp = tail(tp->f_fn);
                if (tp->f_type == INVISIBLE)
                        continue;
                sp = tail(tp->f_fn);
+               for (fl = conf_list; fl; fl = fl->f_next) {
+                       if (fl->f_type != SWAPSPEC)
+                               continue;
+                       sprintf(swapname, "swap%s.c", fl->f_fn);
+                       if (eq(sp, swapname))
+                               goto cont;
+               }
                cp = sp + (len = strlen(sp)) - 1;
                och = *cp;
                *cp = 'o';
                cp = sp + (len = strlen(sp)) - 1;
                och = *cp;
                *cp = 'o';
@@ -306,6 +401,8 @@ do_objs(fp)
                fprintf(fp, "%s ", sp);
                lpos += len + 1;
                *cp = och;
                fprintf(fp, "%s ", sp);
                lpos += len + 1;
                *cp = och;
+cont:
+               ;
        }
        if (lpos != 8)
                putc('\n', fp);
        }
        if (lpos != 8)
                putc('\n', fp);
@@ -342,6 +439,8 @@ tail(fn)
        register char *cp;
 
        cp = rindex(fn, '/');
        register char *cp;
 
        cp = rindex(fn, '/');
+       if (cp == 0)
+               return (fn);
        return (cp+1);
 }
 
        return (cp+1);
 }
 
@@ -357,6 +456,7 @@ do_rules(f)
 {
        register char *cp, *np, och, *tp;
        register struct file_list *ftp;
 {
        register char *cp, *np, och, *tp;
        register struct file_list *ftp;
+       char *extras;
 
 for (ftp = ftab; ftp != 0; ftp = ftp->f_next) {
        if (ftp->f_type == INVISIBLE)
 
 for (ftp = ftab; ftp != 0; ftp = ftp->f_next) {
        if (ftp->f_type == INVISIBLE)
@@ -364,44 +464,48 @@ for (ftp = ftab; ftp != 0; ftp = ftp->f_next) {
        cp = (np = ftp->f_fn) + strlen(ftp->f_fn) - 1;
        och = *cp;
        *cp = '\0';
        cp = (np = ftp->f_fn) + strlen(ftp->f_fn) - 1;
        och = *cp;
        *cp = '\0';
+       if (och == 'o') {
+               fprintf(f, "%so:\n\t-cp ../%so .\n", tail(np), np);
+               continue;
+       }
        fprintf(f, "%so: ../%s%c\n", tail(np), np, och);
        tp = tail(np);
        if (och == 's') {
        fprintf(f, "%so: ../%s%c\n", tail(np), np, och);
        tp = tail(np);
        if (och == 's') {
-               fprintf(f, "\t${AS} -o %so ../%ss\n\n", tp, np);
+               fprintf(f, "\t-ln -s ../%ss %sc\n", np, tp);
+               fprintf(f, "\t${CC} -E ${COPTS} %sc | ${AS} -o %so\n",
+                       tp, tp);
+               fprintf(f, "\trm -f %sc\n\n", tp);
                continue;
        }
                continue;
        }
+       if (ftp->f_flags & CONFIGDEP)
+               extras = "${PARAM} ";
+       else
+               extras = "";
        switch (ftp->f_type) {
 
        case NORMAL:
                switch (machine) {
 
                case MACHINE_VAX:
        switch (ftp->f_type) {
 
        case NORMAL:
                switch (machine) {
 
                case MACHINE_VAX:
-                       fprintf(f, "\t${CC} -I. -c -S ${COPTS} ../%sc\n", np);
-                       fprintf(f, "\t${C2} %ss | sed -f ../%s/asm.sed |",
-                           tp, machinename);
-                       fprintf(f, " ${AS} -o %so\n", tp);
+                       fprintf(f, "\t${CC} -c -S ${COPTS} %s../%sc\n",
+                               extras, np);
+                       fprintf(f, "\t${C2} %ss | ${INLINE} | ${AS} -o %so\n",
+                           tp, tp);
                        fprintf(f, "\trm -f %ss\n\n", tp);
                        break;
                        fprintf(f, "\trm -f %ss\n\n", tp);
                        break;
-
-               case MACHINE_SUN:
-                       fprintf(f, "\t${CC} -I. -c -O ${COPTS} ../%sc\n\n", np);
-                       break;
                }
                break;
 
                }
                break;
 
-       case DEVICE:
+       case DRIVER:
                switch (machine) {
 
                case MACHINE_VAX:
                switch (machine) {
 
                case MACHINE_VAX:
-                       fprintf(f, "\t${CC} -I. -c -S ${COPTS} ../%sc\n", np);
-                       fprintf(f,"\t${C2} -i %ss | sed -f ../%s/asm.sed |",
-                           tp, machinename);
-                       fprintf(f, " ${AS} -o %so\n", tp);
+                       fprintf(f, "\t${CC} -c -S ${COPTS} %s../%sc\n",
+                               extras, np);
+                       fprintf(f,"\t${C2} -i %ss | ${INLINE} | ${AS} -o %so\n",
+                           tp, tp);
                        fprintf(f, "\trm -f %ss\n\n", tp);
                        break;
                        fprintf(f, "\trm -f %ss\n\n", tp);
                        break;
-
-               case MACHINE_SUN:
-                       fprintf(f, "\t${CC} -I. -c -O ${COPTS} ../%sc\n\n", np);
                }
                break;
 
                }
                break;
 
@@ -416,23 +520,17 @@ for (ftp = ftab; ftp != 0; ftp = ftp->f_next) {
                switch (machine) {
 
                case MACHINE_VAX:
                switch (machine) {
 
                case MACHINE_VAX:
-                       fprintf(f, "\t${CC} -I. -c -S %s ../%sc\n", COPTS, np);
+                       fprintf(f, "\t${CC} -c -S %s %s../%sc\n",
+                               COPTS, extras, np);
                        fprintf(f, "\tex - %ss < ${GPROF.EX}\n", tp);
                        fprintf(f, "\tex - %ss < ${GPROF.EX}\n", tp);
-                       fprintf(f,
-                           "\tsed -f ../vax/asm.sed %ss | ${AS} -o %so\n",
-                           tp, tp);
+                       fprintf(f, "\t${INLINE} %ss | ${AS} -o %so\n", tp, tp);
                        fprintf(f, "\trm -f %ss\n\n", tp);
                        break;
                        fprintf(f, "\trm -f %ss\n\n", tp);
                        break;
-
-               case MACHINE_SUN:
-                       fprintf(stderr,
-                           "config: don't know how to profile kernel on sun\n");
-                       break;
                }
                break;
 
        default:
                }
                break;
 
        default:
-               printf("Don't know rules for %s", np);
+               printf("Don't know rules for %s\n", np);
                break;
        }
        *cp = och;
                break;
        }
        *cp = och;
@@ -447,65 +545,84 @@ do_load(f)
 {
        register struct file_list *fl;
        int first = 1;
 {
        register struct file_list *fl;
        int first = 1;
+       struct file_list *do_systemspec();
 
 
-       for (fl = conf_list; fl != 0; fl = fl->f_next) {
-               fprintf(f, "%s: makefile locore.o ${OBJS} param.o",
-                   fl->f_needs);
-               fprintf(f, " ioconf.o swap%s.o\n", fl->f_fn);
-               fprintf(f, "\t@echo loading %s\n\t@rm -f %s\n",
-                   fl->f_needs, fl->f_needs);
-               if (first) {
-                       first = 0;
-                       fprintf(f, "\t@sh ../conf/newvers.sh\n");
-                       fprintf(f, "\t@${CC} $(CFLAGS) -c vers.c\n");
+       fl = conf_list;
+       while (fl) {
+               if (fl->f_type != SYSTEMSPEC) {
+                       fl = fl->f_next;
+                       continue;
                }
                }
-               switch (machine) {
+               fl = do_systemspec(f, fl, first);
+               if (first)
+                       first = 0;
+       }
+       fprintf(f, "all:");
+       for (fl = conf_list; fl != 0; fl = fl->f_next)
+               if (fl->f_type == SYSTEMSPEC)
+                       fprintf(f, " %s", fl->f_needs);
+       fprintf(f, "\n");
+}
 
 
-               case MACHINE_VAX:
-                       fprintf(f, "\t@${LD} -n -o %s -e start -x -T 80000000 ",
-                               fl->f_needs);
-                       fprintf(f, "locore.o ${OBJS} vers.o ioconf.o param.o ");
-                       fprintf(f, "swap%s.o\n", fl->f_fn);
-                       break;
+struct file_list *
+do_systemspec(f, fl, first)
+       FILE *f;
+       register struct file_list *fl;
+       int first;
+{
 
 
-               case MACHINE_SUN:
-                       fprintf(f, "\t@${LD} -o %s -e start -x -T 4000 ",
-                               fl->f_needs);
-                       fprintf(f, "locore.o ${OBJS} vers.o ioconf.o param.o ");
-                       fprintf(f, "swap%s.o\n", fl->f_fn);
-                       break;
-               }
-               fprintf(f, "\t@echo rearranging symbols\n");
-               fprintf(f, "\t@-symorder ../%s/symbols.sort %s\n",
-                   machinename, fl->f_needs);
-               fprintf(f, "\t@size %s\n", fl->f_needs);
-               fprintf(f, "\t@chmod 755 %s\n\n", fl->f_needs);
+       fprintf(f, "%s: Makefile", fl->f_needs);
+       if (machine == MACHINE_VAX)
+               fprintf(f, " ${INLINECMD}", machinename);
+       fprintf(f, " locore.o emulate.o ${OBJS} param.o ioconf.o swap%s.o\n",
+           fl->f_fn);
+       fprintf(f, "\t@echo loading %s\n\t@rm -f %s\n",
+           fl->f_needs, fl->f_needs);
+       if (first) {
+               fprintf(f, "\t@sh ../conf/newvers.sh\n");
+               fprintf(f, "\t@${CC} $(CFLAGS) -c vers.c\n");
        }
        }
-       for (fl = conf_list; fl != 0; fl = fl->f_next) {
-               fprintf(f, "swap%s.o: ../%s/swap%s.c\n",
-                   fl->f_fn, machinename, fl->f_fn);
-               switch (machine) {
+       switch (machine) {
 
 
-               case MACHINE_VAX:
-                       fprintf(f, "\t${CC} -I. -c -S ${COPTS}");
-                       fprintf(f, " ../%s/swap%s.c\n", machinename, fl->f_fn);
-                       fprintf(f, "\t${C2} swap%s.s | sed -f ../%s/asm.sed",
-                           fl->f_fn, machinename);
-                       fprintf(f, " | ${AS} -o swap%s.o\n",
-                           fl->f_fn);
-                       fprintf(f, "\trm -f swap%s.s\n\n", fl->f_fn);
-                       break;
+       case MACHINE_VAX:
+               fprintf(f, "\t@${LD} -n -o %s -e start -x -T 80000000 ",
+                       fl->f_needs);
+               break;
+       }
+       fprintf(f, "locore.o emulate.o ${OBJS} vers.o ioconf.o param.o ");
+       fprintf(f, "swap%s.o\n", fl->f_fn);
+       fprintf(f, "\t@echo rearranging symbols\n");
+       fprintf(f, "\t@-symorder ../%s/symbols.sort %s\n",
+           machinename, fl->f_needs);
+       fprintf(f, "\t@size %s\n", fl->f_needs);
+       fprintf(f, "\t@chmod 755 %s\n\n", fl->f_needs);
+       do_swapspec(f, fl->f_fn);
+       for (fl = fl->f_next; fl->f_type == SWAPSPEC; fl = fl->f_next)
+               ;
+       return (fl);
+}
 
 
-               case MACHINE_SUN:
-                       fprintf(f, "\t${CC} -I. -c -O ${COPTS} ");
-                       fprintf(f, "../%s/swap%s.c\n\n", machinename, fl->f_fn);
-                       break;
-               }
+do_swapspec(f, name)
+       FILE *f;
+       register char *name;
+{
+
+       if (!eq(name, "generic")) {
+               fprintf(f, "swap%s.o: swap%s.c\n", name, name);
+               fprintf(f, "\t${CC} -c -O ${COPTS} swap%s.c\n\n", name);
+               return;
+       }
+       fprintf(f, "swapgeneric.o: ../%s/swapgeneric.c\n", machinename);
+       switch (machine) {
+
+       case MACHINE_VAX:
+               fprintf(f, "\t${CC} -c -S ${COPTS} ");
+               fprintf(f, "../%s/swapgeneric.c\n", machinename);
+               fprintf(f, "\t${C2} swapgeneric.s | ${INLINE}");
+               fprintf(f, " | ${AS} -o swapgeneric.o\n");
+               fprintf(f, "\trm -f swapgeneric.s\n\n");
+               break;
        }
        }
-       fprintf(f, "all:");
-       for (fl = conf_list; fl != 0; fl = fl->f_next)
-               fprintf(f, " %s", fl->f_needs);
-       fprintf(f, "\n");
 }
 
 char *
 }
 
 char *