Subversion Repositories public

Rev

Rev 88 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88 Rev 94
Line 1... Line 1...
1
# set the include path for X, qt and KDE
1
# set the include path for X, qt and KDE
2
INCLUDES = $(all_includes)
2
INCLUDES = $(all_includes)
3
 
3
 
4
# these are the headers for your project
4
# these are the headers for your project
5
noinst_HEADERS = disassemble.h garmin.h managefile.h settingswidget.h \
5
noinst_HEADERS = disassemble.h garmin.h managefile.h progresswidget.h \
6
	sportwatcher.h sportwatcherwidget.h
6
	settingswidget.h sportwatcher.h sportwatcherwidget.h
7
 
7
 
8
# let automoc handle all of the meta source files (moc)
8
# let automoc handle all of the meta source files (moc)
9
METASOURCES = AUTO
9
METASOURCES = AUTO
10
 
10
 
11
messages: rc.cpp
11
messages: rc.cpp
Line 21... Line 21...
21
# of the other Makefile.am variables
21
# of the other Makefile.am variables
22
bin_PROGRAMS = sportwatcher
22
bin_PROGRAMS = sportwatcher
23
 
23
 
24
# the application source, library search path, and link libraries
24
# the application source, library search path, and link libraries
25
sportwatcher_SOURCES = disassemble.cpp main.cpp managefile.cpp \
25
sportwatcher_SOURCES = disassemble.cpp main.cpp managefile.cpp \
26
	settingswidget.cpp settingswidgetbase.ui sportwatcher.cpp sportwatcherwidget.cpp \
26
	progresswidget.cpp progresswidgetbase.ui settingswidget.cpp settingswidgetbase.ui \
27
	sportwatcherwidgetbase.ui
27
	sportwatcher.cpp sportwatcherwidget.cpp sportwatcherwidgetbase.ui
28
sportwatcher_LDFLAGS = $(KDE_RPATH) $(all_libraries)
28
sportwatcher_LDFLAGS = $(KDE_RPATH) $(all_libraries)
29
sportwatcher_LDADD = -lkio -lusb $(LIB_KDEUI) -lgarmin
29
sportwatcher_LDADD = $(top_builddir)/libgarmin/libgarmin.a $(LIB_KDEUI) -lkio \
-
 
30
	-lusb
30
 
31
 
31
# this is where the desktop file will go 
32
# this is where the desktop file will go 
32
shelldesktopdir   = $(kde_appsdir)/Utilities
33
shelldesktopdir   = $(kde_appsdir)/Utilities
33
shelldesktop_DATA = sportwatcher.desktop
34
shelldesktop_DATA = sportwatcher.desktop
34
 
35