#
# Makefile to build the program "apost"
#

FOR     =	f77 -c -fno-globals -w 
CC      =       cc -c
LINK    =	f77 

OPT	=	-O2

.f.o:
	$(FOR) $(OPT)  $<

.c.o:
	$(CC) $(OPT) $<

default:
	make apost1     

clean:
	rm -f *.o *~ 


APOST1	= apost-ex.o input.o integral.o g7.o uncon.o border.o sh.o uncong.o

apost1: $(APOST1)
	$(LINK) -o enpart $(APOST1) 


