Line | |
---|
1 | ## Makefile.am for taper
|
---|
2 |
|
---|
3 | # this is the program that gets installed. it's name is used for all
|
---|
4 | # of the other Makefile.am variables
|
---|
5 | bin_PROGRAMS = taper taper_client
|
---|
6 |
|
---|
7 | # set the include path for X, qt and KDE
|
---|
8 | INCLUDES = $(all_includes)
|
---|
9 |
|
---|
10 | # the library search path.
|
---|
11 | taper_LDFLAGS = $(KDE_RPATH) $(all_libraries)
|
---|
12 |
|
---|
13 | # the libraries to link against.
|
---|
14 | taper_LDADD = $(LIB_KFILE) $(LIB_KDEPRINT)
|
---|
15 |
|
---|
16 | # which sources should be compiled for taper
|
---|
17 | taper_SOURCES = main.cpp taper.cpp taperview.cpp \
|
---|
18 | pref.cpp taperiface.skel
|
---|
19 |
|
---|
20 | # these are the headers for your project
|
---|
21 | noinst_HEADERS = taper.h taperview.h pref.h
|
---|
22 |
|
---|
23 | # client stuff
|
---|
24 | taper_client_LDFLAGS = $(KDE_RPATH) $(all_libraries)
|
---|
25 | taper_client_LDADD = $(LIB_KDECORE)
|
---|
26 | taper_client_SOURCES = taper_client.cpp
|
---|
27 |
|
---|
28 | # let automoc handle all of the meta source files (moc)
|
---|
29 | METASOURCES = AUTO
|
---|
30 |
|
---|
31 | messages: rc.cpp
|
---|
32 | $(XGETTEXT) *.cpp -o $(podir)/taper.pot
|
---|
33 |
|
---|
34 | KDE_ICON = taper
|
---|
35 |
|
---|
36 | # this is where the kdelnk file will go
|
---|
37 | kdelnkdir = $(kde_appsdir)/Utilities
|
---|
38 | kdelnk_DATA = taper.desktop
|
---|
39 |
|
---|
40 | # this is where the XML-GUI resource file goes
|
---|
41 | rcdir = $(kde_datadir)/taper
|
---|
42 | rc_DATA = taperui.rc
|
---|
Note:
See
TracBrowser
for help on using the repository browser.