LD=../../bin/pvmf77
LFLAGS=
LIBS=-L$(LIBDIR) -leasypvm -lpvm3 $(ARCHDLIB) -lm
OBJS=transp.o transpf77.o

all:
	@../makeall _all

_all:	transp pvmserver

transp:	$(OBJS)
	$(LD) $(LFLAGS) -o $@ $(OBJS) $(LIBS)

transp.o:	transp.c
	$(CC) -c $(CFLAGS) transp.c

transpf77.o:	transpf77.f
	$(FC) -c $(FFLAGS) transpf77.f

pvmserver:
	ln -s $(LIBDIR)/pvmserver .

clean:
	-rm -f *~
	-rm -f *.o
	-rm -f transp pvmserver


