#!/bin/sh - # Copyright (C) 1995,1996 Robert de Bath # This file is part of the Linux-8086 C library and is distributed # under the GNU Library General Public License. cat < $1/Makefile # Copyright (C) $YEAR $NAME <$EMAIL> # This file is part of the Linux-8086 C library and is distributed # under the GNU Library General Public License. OBJ=$1.o CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS) all: $(LIBC)($(OBJ)) @: clean: rm -f *.o libc.a ! cat < $1/README Copyright (C) $YEAR $NAME <$EMAIL> This file is part of the Linux-8086 C library and is distributed under the GNU Library General Public License. There's currently nothing special about $1. -$FNAME ! cat < $1/$1.c /* Copyright (C) $YEAR $NAME <$EMAIL> * This file is part of the Linux-8086 C library and is distributed * under the GNU Library General Public License. */ $1() { /* FIXME :-) */ } ! echo "Ok, the directory $1 has now been created ..." exit 0