Added Irssi::TextUI.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1733 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-09 01:59:36 +00:00 committed by cras
commit 01d3e74f63
9 changed files with 349 additions and 3 deletions

View file

@ -118,7 +118,7 @@ EXTRA_DIST = \
$(UI_SOURCES)
all-local:
for dir in common irc ui; do \
for dir in common irc ui textui; do \
cd $$dir && \
if [ ! -f Makefile ]; then \
$(perlpath) Makefile.PL $(PERL_MM_PARAMS); \
@ -128,16 +128,17 @@ all-local:
done
install-exec-local:
for dir in common irc ui; do \
for dir in common irc ui textui; do \
cd $$dir && $(MAKE) install && cd ..; \
done
clean-generic:
rm -f common/Makefile irc/Makefile ui/Makefile
rm -f common/Makefile irc/Makefile ui/Makefile textui/Makefile
distclean: distclean-am
-(cd common && $(MAKE) realclean && rm -f Makefile.PL)
-(cd irc && $(MAKE) realclean && rm -f Makefile.PL)
-(cd ui && $(MAKE) realclean && rm -f Makefile.PL)
-(cd textui && $(MAKE) realclean && rm -f Makefile.PL)
libperl_core_la_LIBADD = $(PERL_LDFLAGS)