~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Joshua Judson Rosen
  • Date: 2009-09-26 02:35:15 UTC
  • Revision ID: rozzin@geekspace.com-20090926023515-yxl5sg1a45gupuc8
Imported from tangogps-0.9.7 tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
## Created by Anjuta - will be overwritten
 
4
## If you don't want it to overwrite it,
 
5
##      Please disable it in the Anjuta project configuration
 
6
 
 
7
INCLUDES = \
 
8
        $(PACKAGE_CFLAGS)
 
9
 
 
10
AM_CFLAGS =\
 
11
         -DRELEASE -DHAVE_CONFIG_H\
 
12
         -Wall\
 
13
         -O2\
 
14
         -g
 
15
 
 
16
bin_PROGRAMS = tangogps
 
17
 
 
18
tangogps_SOURCES = \
 
19
        support.h\
 
20
        support.c\
 
21
        main.c\
 
22
        interface.h\
 
23
        interface.c\
 
24
        callbacks.h\
 
25
        callbacks.c\
 
26
        map_management.c\
 
27
        map_management.h\
 
28
        globals.c\
 
29
        globals.h\
 
30
        converter.c\
 
31
        converter.h\
 
32
        gps_functions.c\
 
33
        gps_functions.h\
 
34
        init.c\
 
35
        init.h\
 
36
        tile_management.c\
 
37
        tile_management.h\
 
38
        friends.c\
 
39
        friends.h\
 
40
        gpsdstart.sh\
 
41
        geo_photos.c\
 
42
        geo_photos.h\
 
43
        poi.c\
 
44
        poi.h\
 
45
        util.c\
 
46
        util.h\
 
47
        wp.c\
 
48
        wp.h\
 
49
        tracks.c\
 
50
        tracks.h\
 
51
        exif.c\
 
52
        exif.h
 
53
 
 
54
tangogps_LDFLAGS = 
 
55
 
 
56
tangogps_LDADD =  \
 
57
        $(PACKAGE_LIBS)\
 
58
         -lcurl -lgthread-2.0 -lgconf-2 -lsqlite3 -lexif
 
59