# # Makefile for WEB system on SUN SPARC Oct 95 Mahieddine Ladjadj # # SUN SPARC: # node name: xenopus running Solaris 2.4 # # to set up PATH etc... # source /local/molbio/cshrc_solaris # FFLAGS = -DSP_SUN4 -c -O0 # add -lV77 to use time, date VMS version: 09:20:57 LF = -g -lV77 PGM = spider_sunsparc LIB = spider_sunsparc.a .PRECIOUS : $(LIB) ../bin/$(PGM) SHELL = /bin/sh # Makefile.inc has listing of library elements (files) in SPIDER include Makefile.inc ../bin/$(PGM) : $(PGM).o $(LIB) @\rm -f ../bin/$(PGM) f77 $(LF) $(PGM).o $(LIB) -o ../bin/$(PGM) $(PGM).o : spider.f @/usr/ccs/lib/cpp -PC -DSP_SUN4 spider.f $(PGM).F f77 $(FFLAGS) -o $(PGM).o $(PGM).F $(LIB) : $(ELEMENTS) @echo library filled # ranlib $(LIB) $(ELEMENTS) : @/usr/ccs/lib/cpp -PC -DSP_SUN4 $*.f $*.F f77 $(FFLAGS) $*.F $(AR) r $(LIB) $*.o @\rm $*.o $*.F