~leadman/foxtrotgps/translations

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
## Process this file with automake to produce Makefile.in

AM_CPPFLAGS = \
	-DPACKAGE_DATA_DIR="\"$(datadir)\"" \
	-DPACKAGE_PIXMAPS_DIR="\"$(datadir)/pixmaps\"" \
	-DPACKAGE_LOCALE_DIR="\"$(localedir)\"" \
	-DPACKAGE_HTML_DIR="\"$(htmldir)\"" \
	-DPACKAGE_LIBEXEC_DIR="\"$(pkglibexecdir)\"" \
	\
	$(GTK_CFLAGS) \
	$(GLADE_CFLAGS) \
	$(GCONF_CFLAGS) \
	$(LIBCURL_CFLAGS) \
	$(SQLITE_CFLAGS) \
	$(LIBEXIF_CFLAGS) \
	$(LIBXML_CFLAGS) \
	$(LIBGPS_CFLAGS) \
	$(BLUETOOTH_CFLAGS)

bin_PROGRAMS = foxtrotgps

foxtrotgps_SOURCES = \
	support.h\
	support.c\
	main.c\
	interface.h\
	interface.c\
	callbacks.h\
	callbacks.c\
	map_management.c\
	map_management.h\
	globals.c\
	globals.h\
	converter.c\
	converter.h\
	gps_functions.c\
	gps_functions.h\
	init.c\
	init.h\
	tile_management.c\
	tile_management.h\
	friends.c\
	friends.h\
	gpsdstart.sh\
	geo_photos.c\
	geo_photos.h\
	poi.c\
	poi.h\
	util.c\
	util.h\
	wp.c\
	wp.h\
	tracks.c\
	tracks.h\
	route.c\
	route.h\
	exif.c\
	exif.h\
	hrm_functions.c\
	hrm_functions.h

foxtrotgps_LDFLAGS = -export-dynamic

foxtrotgps_LDADD =  \
	$(GTK_LIBS) \
	$(GLADE_LIBS) \
	$(GCONF_LIBS) \
	$(LIBCURL_LIBS) \
	$(SQLITE_LIBS) \
	$(LIBEXIF_LIBS) \
	$(LIBXML_LIBS) \
	$(LIBGPS_LIBS) \
	$(BLUETOOTH_LIBS) \
	-lm