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