fluffos-1.22/
fluffos-1.22/Win32/
fluffos-1.22/compat/
fluffos-1.22/testsuite/
fluffos-1.22/testsuite/clone/
fluffos-1.22/testsuite/command/
fluffos-1.22/testsuite/data/
fluffos-1.22/testsuite/etc/
fluffos-1.22/testsuite/include/
fluffos-1.22/testsuite/inherit/
fluffos-1.22/testsuite/inherit/master/
fluffos-1.22/testsuite/log/
fluffos-1.22/testsuite/single/
fluffos-1.22/testsuite/single/tests/compiler/
fluffos-1.22/testsuite/single/tests/efuns/
fluffos-1.22/testsuite/single/tests/operators/
fluffos-1.22/testsuite/u/
fluffos-1.22/tmp/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX_LEN	1024

int main(int argc, char *argv[]) {
	char command[MAX_LEN];
	int i;

	if (strcmp(argv[1], "rcu"))
		return -1;
	if (!strstr(argv[2], ".lib"))
		return -1;
	strcpy(command, "lib ");
	for (i = 3; i < argc; i++) {
		if (!strstr(argv[i], ".obj"))
			return -1;
		strcat(command, argv[i]);
		strcat(command, " ");
	}
	strcat(command, "/OUT:");
	strcat(command, argv[2]);
	system(command);
	return 0;
}