| 
</$objtype/mkfile
CFLAGS=-FTw
TARG=gofs
BIN=$home/bin/$objtype
FILES=\
	gofs\
CFILES=${FILES:%=%.c}
OFILES=${FILES:%=%.$O}
HFILES=
all:V:		$O.out
install:V:	$BIN/$TARG
$BIN/$TARG:N: $O.out
	cp $prereq $BIN/$TARG
$O.out:N: $OFILES
	$LD $LDFLAGS -o $target $newprereq
%.$O:N:	$HFILES $CFILES
	$CC $CFLAGS $stem.c
clean:V:
	rm -f *.[$OS] [$OS].out
nuke:V:
	rm -f *.[$OS] [$OS].out $BIN/$TARG
 |