File: Makefile

package info (click to toggle)
emoslib 000382%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 49,276 kB
  • sloc: fortran: 90,253; ansic: 26,730; makefile: 417; sh: 388; f90: 276
file content (76 lines) | stat: -rwxr-xr-x 2,320 bytes parent folder | download | duplicates (3)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#
#                                 Makefile for bufrtables
#
LIBRARY  = ../lib$(LIB)$(R64).a
#
include ../config/config.$(ARCH)$(CNAME)$(R64)$(A64)
#
include ../options/options_$(ARCH)
#
TARGETS      = all clean
#
SOURCES.F=

LINKS=    B0000000000099010001.TXT \
          D0000000000098011000.TXT \
          D0000000000078011007.TXT \
          B0000000000098011000.TXT \
          B0000000000098010000.TXT \
          B0000000000089011255.TXT \
          B0000000000078011007.TXT \
          D0000000000099010001.TXT \
          D0000000000089012001.TXT \
          D0000000000078011008.TXT \
          D0000000000034011001.TXT \
          B0000000000089012001.TXT \
          B0000000000078011008.TXT \
          B0000000000034011001.TXT \
          B0000000000254010001.TXT \
          D0000000000254010001.TXT \
          B0000000000000007000.TXT \
          D0000000000000007000.TXT \
          B0000000000000008000.TXT \
          D0000000000000008000.TXT \
          B0000000000000009000.TXT \
          D0000000000000009000.TXT \
          B0000000000000010000.TXT \
          D0000000000000010000.TXT \
          B0000000000000011000.TXT \
          D0000000000000011000.TXT \
          B0000000000000012000.TXT \
          D0000000000000012000.TXT \
          B0000000000098007001.TXT \
          D0000000000098007001.TXT \
          B0000000000098008001.TXT \
          D0000000000098008001.TXT \
          B0000000000098009001.TXT \
          D0000000000098009001.TXT \
          B0000000000098010001.TXT \
          D0000000000098010001.TXT \
          B0000000000098011001.TXT \
          D0000000000098011001.TXT \
          B0000000000098012001.TXT \
          D0000000000098012001.TXT 


#
OBJECTS.F    = $(SOURCES.F:.F=.o) 
OBJECTS.c    = $(SOURCES.c:.c=.o)
OBJECTS      = $(OBJECTS.F) $(OBJECTS.c) 
#
#
all:  links bufr2txt_tables bufr_split_tables txt2bufr_tables

links: 
	./links.sh

bufr2txt_tables: bufr2txt_tables.f
	$(FC) $(FFLAGS) -o bufr2txt_tables bufr2txt_tables.f $(LIBRARY)
bufr_split_tables: bufr_split_tables.f
	$(FC) $(FFLAGS) -o bufr_split_tables bufr_split_tables.f $(LIBRARY)
txt2bufr_tables: txt2bufr_tables.f
	$(FC) $(FFLAGS) -o txt2bufr_tables txt2bufr_tables.f $(LIBRARY)

clean:
	\rm -f $(LINKS) *.o
	\rm -f bufr2txt_tables; \rm -f bufr_split_tables; \rm -f txt2bufr_tables