diff options
Diffstat (limited to 'lib/ext/Makefile.am')
-rw-r--r-- | lib/ext/Makefile.am | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/ext/Makefile.am b/lib/ext/Makefile.am index 48e4e2d5e..a7ac4dbf9 100644 --- a/lib/ext/Makefile.am +++ b/lib/ext/Makefile.am @@ -1,16 +1,21 @@ SUBDIRS = -DIST_SUBDIRS = wocky +DIST_SUBDIRS = wocky telepathy-yell all-local: @cd wocky && $(MAKE) + @cd telepathy-yell && $(MAKE) clean-local: if test -e wocky/Makefile ; then \ cd wocky && $(MAKE) clean ; \ fi + if test -e telepathy-yell/Makefile ; then \ + cd telepathy-yell && $(MAKE) clean ; \ + fi + uninstall-local: - @cd wocky/wocky && $(MAKE) uninstall + @cd telepathy-yell/telepathy-yell && $(MAKE) uninstall install-data-local: - @cd wocky/wocky && $(MAKE) install + @cd telepathy-yell/telepathy-yell && $(MAKE) install |