File: Makefile

package info (click to toggle)
spherepack 3.3~a1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,080 kB
  • sloc: f90: 43,382; python: 5,968; ansic: 110; makefile: 49
file content (9 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
libsphere.a:    *.f90
	gfortran -c *.f90
	ld -r -o libsphere.a *.o

clean:
	rm -f *.o

%.o: %.f90
	$(FC) $(FFLAGS) -c $<