[go: up one dir, main page]

Menu

[r4]: / trunk / gome_iso / makefile  Maximize  Restore  History

Download this file

35 lines (21 with data), 1.0 kB

 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
BASE_DIR=/home/home/pmills
LIB_DIR=$(BASE_DIR)/lib
INCLUDE_DIR=$(BASE_DIR)/include
CPP=g++
CFLAGS=-I$(INCLUDE_DIR) -g
LDFLAGS=-L$(LIB_DIR) -lpetey
all: convert_gome_pmd print_gome_coords convert_gome print_gome_interpolated
convert_gome_pmd: read_amsu.o convert_gome_pmd.cc
$(CPP) $(CFLAGS) -o$@ convert_gome_pmd.cc read_amsu.o $(LDFLAGS)
convert_gome: read_gome.o convert_gome.cc rawread_gome.o
$(CPP) $(CFLAGS) -o$@ convert_gome.cc read_gome.o rawread_gome.o $(LDFLAGS)
print_gome_coords: read_gome.o print_gome_coords.cc rawread_gome.o
$(CPP) $(CFLAGS) -o$@ print_gome_coords.cc read_gome.o rawread_gome.o $(LDFLAGS)
print_gome_interpolated: read_gome.o print_gome_interpolated.cc rawread_gome.o
$(CPP) $(CFLAGS) -o$@ print_gome_interpolated.cc read_gome.o rawread_gome.o $(LDFLAGS)
read_amsu.o: read_amsu.cc read_amsu.h
$(CPP) $(CFLAGS) -c read_amsu.cc
read_gome.o: read_gome.cc read_gome.h
$(CPP) $(CFLAGS) -c read_gome.cc
rawread_gome.o: rawread_gome.cc read_gome.h
$(CPP) $(CFLAGS) -c rawread_gome.cc