diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..3bb652a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,14 @@ +SUBDIRS = translations libktorrent plugins apps scripts + +# $(UTESTS_DIR) + +EXTRA_DIST = AUTHORS COPYING ChangeLog INSTALL README TODO + +messages: rc.cpp + $(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui" -o -name "*.kcfg"` > rc.cpp + LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name *.cxx -o -name \*.ecpp -o -name \*.C`; \ + if test -n "$$LIST"; then \ + $(XGETTEXT) $$LIST -o $(podir)/ktorrent.pot; \ + fi + rm -f rc.cpp + |