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

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

FILES = convdif.o functns2.o

fem.ex:	$(FILES)  ../../UNSUPP/PLOTS/psgrd.o ../../libskit32.a 
	$(F77) $(FFLAGS) -o fem.ex $(FILES) ../../UNSUPP/PLOTS/psgrd.o ../../libskit32.a 

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

../../libskit.a:
	(cd ../..; $(MAKE) $(MAKEFLAGS) libskit.a)

../../UNSUPP/PLOTS/psgrd.o: ../../UNSUPP/PLOTS/psgrd.f
	(cd ../../UNSUPP/PLOTS; $(F77) $(FFLAGS) -c psgrd.f)