## Makefile.am for klosecircuit # this is the program that gets installed. it's name is used for all # of the other Makefile.am variables bin_PROGRAMS = klosecircuit klosecircuit_client # set the include path for X, qt and KDE INCLUDES = $(all_includes) # the library search path. klosecircuit_LDFLAGS = $(KDE_RPATH) $(all_libraries) # the libraries to link against. klosecircuit_LDADD = $(LIB_KFILE) $(LIB_KDEPRINT) # which sources should be compiled for klosecircuit klosecircuit_SOURCES = main.cpp klosecircuit.cpp klosecircuitview.cpp \ pref.cpp klosecircuitiface.skel # these are the headers for your project noinst_HEADERS = klosecircuit.h klosecircuitview.h pref.h # client stuff klosecircuit_client_LDFLAGS = $(KDE_RPATH) $(all_libraries) klosecircuit_client_LDADD = $(LIB_KDECORE) klosecircuit_client_SOURCES = klosecircuit_client.cpp # let automoc handle all of the meta source files (moc) METASOURCES = AUTO messages: rc.cpp $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp $(XGETTEXT) *.cpp -o $(podir)/klosecircuit.pot KDE_ICON = AUTO # this is where the kdelnk file will go kdelnkdir = $(kde_appsdir)/Utilities kdelnk_DATA = klosecircuit.desktop # this is where the XML-GUI resource file goes rcdir = $(kde_datadir)/klosecircuit rc_DATA = klosecircuitui.rc