File: Makefile.in

package info (click to toggle)
pgapack 1.1.1-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,556 kB
  • ctags: 1,829
  • sloc: ansic: 10,331; fortran: 2,985; sh: 503; makefile: 466; perl: 105
file content (52 lines) | stat: -rw-r--r-- 873 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
FC           = @FC@
PREFFLAGS    = @FFLAGS@
RM           = @RM@
LDFLAGS      = @LDFLAGS@
SHELL        = @SHELL@

#    "$@" expands to the target; "$?" expands to the dependency list
FFLAGS      = -o $@ $? $(PREFFLAGS)

LINK.f       = if test -n "$(FC)"; \
                   then echo "  Compiling $@" ; $(FC) $(FFLAGS) $(LDFLAGS); \
               else \
                   echo "$@: Fortran compiler unavailable"; fi

default:
	@make classic
	@make dejong
	@make example
	@make maxbit
	@make maxchar
	@make maxint 
	@make name
	@make namefull


classic: classic.f
	@$(LINK.f)

dejong: dejong.f
	@$(LINK.f)

example: example.f
	@$(LINK.f)

maxbit: maxbit.f
	@$(LINK.f)

maxchar: maxchar.f
	@$(LINK.f)

maxint: maxint.f
	@$(LINK.f)

name: name.f
	@$(LINK.f)

namefull: namefull.f
	@$(LINK.f)

clean: 
	@$(RM) classic dejong example maxbit maxchar maxint name namefull *.o