source: trunk/Taper/src/Makefile.am@ 4663

Last change on this file since 4663 was 4307, checked in by merck, 20 years ago
new project
File size: 1.1 KB
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
5bin_PROGRAMS = taper taper_client
6
7# set the include path for X, qt and KDE
8INCLUDES = $(all_includes)
9
10# the library search path.
11taper_LDFLAGS = $(KDE_RPATH) $(all_libraries)
12
13# the libraries to link against.
14taper_LDADD = $(LIB_KFILE) $(LIB_KDEPRINT)
15
16# which sources should be compiled for taper
17taper_SOURCES = main.cpp taper.cpp taperview.cpp \
18 pref.cpp taperiface.skel
19
20# these are the headers for your project
21noinst_HEADERS = taper.h taperview.h pref.h
22
23# client stuff
24taper_client_LDFLAGS = $(KDE_RPATH) $(all_libraries)
25taper_client_LDADD = $(LIB_KDECORE)
26taper_client_SOURCES = taper_client.cpp
27
28# let automoc handle all of the meta source files (moc)
29METASOURCES = AUTO
30
31messages: rc.cpp
32 $(XGETTEXT) *.cpp -o $(podir)/taper.pot
33
34KDE_ICON = taper
35
36# this is where the kdelnk file will go
37kdelnkdir = $(kde_appsdir)/Utilities
38kdelnk_DATA = taper.desktop
39
40# this is where the XML-GUI resource file goes
41rcdir = $(kde_datadir)/taper
42rc_DATA = taperui.rc
Note: See TracBrowser for help on using the repository browser.