ftp.nice.ch/pub/next/developer/resources/classes/misckit/MiscKit.1.10.0.s.gnutar.gz#/MiscKit/Examples/arch_tool/arch_tool.c

This is arch_tool.c in view mode; [Download] [Up]

/*
  When compiling for 3.0, I've found that changing the top-level Makefile
  was insufficient, at least when attempting to build the additional targets.
  To cover, I wrote this program.

  Daniel Ashton
  jdashton@southern.edu
  
  Copyright 1994 Daniel Ashton.  All rights reserved.  Use in the MiscKit
  is permitted under the terms of the MiscKit license.
*/

#include <stdio.h>

int main (int argc, char *argv[])
{	/*
	This is not a complete emulation of NeXT's arch_tool program.
	we are just assuming that the -archify flag was argv[1] since
	that is all the MiscKit needs to use.  -DAY
	*/
	int i;
	for (i = 2; i < argc; i++) printf ("-arch %s ", argv [i]);
	return 0;
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.