File: makefile

package info (click to toggle)
sparskit 2.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 4,348 kB
  • sloc: fortran: 15,253; makefile: 260; sh: 136; ansic: 76
file content (18 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 
F77 = f77
#F77 = cf77
FFLAGS = -g -Wall 

FILES = rinfo1.o dinfo13.o
## needs library libskit.a in whatever machine version -- 

LIB   = -L/project/darpa/lib/PC -lskit
##LIB   = -L/project/darpa/lib/solaris -lskit

info1.ex: $(FILES) 
	$(F77) -o info1.ex $(FILES) $(LIB) 

clean:
	rm -f *.o *.ex core *.trace *~ 

.f.o  : ;       $(F77) $(FFLAGS) -c $*.f -o $*.o