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 (14 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FFLAGS = 
F77 = f77

#F77 = cf77
#FFLAGS = -Wf"-dp"

FILES1 = rexp.o exppro.o 
FILES2 = rphi.o phipro.o 

exp.ex:		$(FILES1)
	$(F77) $(FFLAGS) $(FILES1) -o exp.ex  

phi.ex:		$(FILES2)
	$(F77) $(FFLAGS) $(FILES2) -o phi.ex