
# Modified Definitions #

HOME = /u3/usystem

VENDOR = sequent
CPU = i386
OS = bsd43

# Basic Definitions #

LIB = ../lib
INC = ../inc

# Directives #

all : ${LIB} ${LIB}/shell.o ${LIB}/vstrcat.o

# Dependencies #

CC = gcc -O -I${INC} -Wall -D__${VENDOR}__ -B${HOME}/gnu/bin/ -c -o $@

${LIB} :
	mkdir $@

${LIB}/shell.o : shell.c ${INC}/uUnix.h ${INC}/shell.h Makefile
	${CC} shell.c

${LIB}/vstrcat.o : ${INC}/uUnix.h ${INC}/vstrcat.h Makefile
	${CC} vstrcat.c

# Local Variables: #
# compile-command: "/bin/make -k" #
# End: #
