1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
###############################################################################
# BRLTTY - A background process providing access to the Linux console (when in
# text mode) for a blind person using a refreshable braille display.
#
# Copyright (C) 1995-2003 by The BRLTTY Team. All rights reserved.
#
# BRLTTY comes with ABSOLUTELY NO WARRANTY.
#
# This is free software, placed under the terms of the
# GNU General Public License, as published by the Free Software
# Foundation. Please see the file COPYING for details.
#
# Web Page: http://mielke.cc/brltty/
#
# This software is maintained by Dave Mielke <dave@mielke.cc>.
###############################################################################
include $(BLD_TOP)config.mk
all install uninstall install-programs install-help install-tables install-drivers:
cd $(PGM_DIR) && $(MAKE) $@
ITERATE = -for directory in $(PGM_DIR) $(TBL_DIR) $(UCD_DIR); do (cd $$directory && $(MAKE) $@); done
clean::
$(ITERATE)
distclean:: clean
-cd $(DOC_DIR) && $(MAKE) $@
$(ITERATE)
-rm -f brltty.spec brltty.lsm
-rm -f config.log config.cache config.status
-rm -fr autom4te*.cache
-rm -f config.mk config.h
|