SHELL = /bin/sh

SOURCES = \
Uservect1.in \
Uservect2.in \
Uservect3.in \
Uservect4.in \
Uservect5.in 

#CMDS = ${SOURCES:.in=}
TEXS = ${SOURCES:.in=.tex}

.SUFFIXES	:	.in .tex 

#commands:	${SOURCES:.cc=.o}
document:	${TEXS}

.in.tex:
	- run_link $? > ${?:.in=.tex}

#${CMDS}	:	$$@.cc
#	${CCC} ${CFLAGS} ${INCLUDES} $? -o $@ ${LIBRARY_PATH} ${LIBS}

load:	$(SOURCES)

clean:
	- rm -f *.tex
