## Makefile.am for taper # this is the program that gets installed. it's name is used for all # of the other Makefile.am variables bin_PROGRAMS = taper taper_client # set the include path for X, qt and KDE INCLUDES = $(all_includes) # the library search path. taper_LDFLAGS = $(KDE_RPATH) $(all_libraries) # the libraries to link against. taper_LDADD = $(LIB_KFILE) $(LIB_KDEPRINT) # which sources should be compiled for taper taper_SOURCES = main.cpp taper.cpp taperview.cpp \ pref.cpp taperiface.skel # these are the headers for your project noinst_HEADERS = taper.h taperview.h pref.h # client stuff taper_client_LDFLAGS = $(KDE_RPATH) $(all_libraries) taper_client_LDADD = $(LIB_KDECORE) taper_client_SOURCES = taper_client.cpp # let automoc handle all of the meta source files (moc) METASOURCES = AUTO messages: rc.cpp $(XGETTEXT) *.cpp -o $(podir)/taper.pot KDE_ICON = taper # this is where the kdelnk file will go kdelnkdir = $(kde_appsdir)/Utilities kdelnk_DATA = taper.desktop # this is where the XML-GUI resource file goes rcdir = $(kde_datadir)/taper rc_DATA = taperui.rc