diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-17 23:51:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-17 23:51:06 +0000 |
commit | 8e8432bc206fbf713d5a28cb5f73a8e91ca182ec (patch) | |
tree | e3bc178c71b7410895ee21bc0034e5ad5f7f02dd /Makefile.am | |
parent | 3f4f61189742ee39bdd7f050fb172491abff831b (diff) | |
download | kdbusnotification-8e8432bc206fbf713d5a28cb5f73a8e91ca182ec.tar.gz kdbusnotification-8e8432bc206fbf713d5a28cb5f73a8e91ca182ec.zip |
Initial version of the kdbusnotification service
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdbusnotification@1259338 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..5d9bf01 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,29 @@ +AUTOMAKE_OPTIONS = foreign 1.5 + +install-data-local: + @echo "" + @echo "" + @echo "" + @echo "*************** Important *************************" + @echo "" + @echo " Add "$(bindir)" to your PATH" + @echo "" + @echo " Please report bugs with our web form at" + @echo " http://bugs.kde.org." + @echo "" + @echo " Stephan Kulow <coolo@kde.org> and all the KDE" + @echo " developers wish you fun with the KDE." + @echo "****************************************************" + @echo "" + +$(top_srcdir)/acinclude.m4: $(shell find . -name acinclude.m4.in) $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in + @cd $(top_srcdir) && cat $^ > acinclude.m4; + +$(top_srcdir)/configure.in: $(top_srcdir)/configure.files $(shell test -f $(top_srcdir)/configure.files && sed -e "s%^%\$(top_srcdir)/%" $(top_srcdir)/configure.files) $(top_srcdir)/subdirs + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in +$(top_srcdir)/subdirs: + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs +$(top_srcdir)/configure.files: + cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.files + +SUBDIRS=$(TOPSUBDIRS) |