diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-03-21 20:35:05 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-03-21 20:35:05 +0100 |
commit | 066aaaeb73a8bb908b1c0d8c45f110b2f799f7ce (patch) | |
tree | 4cb26eb8ace976f7d0c8607dc2d3de2b5107670c /bab/Makefile.am | |
download | tde-style-baghira-066aaaeb73a8bb908b1c0d8c45f110b2f799f7ce.tar.gz tde-style-baghira-066aaaeb73a8bb908b1c0d8c45f110b2f799f7ce.zip |
Initial import of baghira 0.8
Diffstat (limited to 'bab/Makefile.am')
-rw-r--r-- | bab/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/bab/Makefile.am b/bab/Makefile.am new file mode 100644 index 0000000..bf7a71e --- /dev/null +++ b/bab/Makefile.am @@ -0,0 +1,22 @@ +## Makefile.am for bab + +# set the include path for X, qt and KDE +INCLUDES = $(all_includes) + +# these are the headers for your project +noinst_HEADERS = bab.h bab_iface.h styleconfdialog.h + +# let automoc handle all of the meta source files (moc) +METASOURCES = AUTO + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kdedcoptest.pot + +# this is the program that gets installed. it's name is used for all +# of the other Makefile.am variables +bin_PROGRAMS = bab + +# the application source, library search path, and link libraries +bab_SOURCES = main.cpp styleconfdialog.cpp bab_iface.skel +bab_LDFLAGS = $(KDE_RPATH) $(all_libraries) +bab_LDADD = $(LIB_KDEUI) |