# Copyright (c) 1991-2012 Kawahara Lab., Kyoto University # Copyright (c) 2001-2005 Shikano Lab., Nara Institute of Science and Technology # Copyright (c) 2005-2012 Julius project team, Nagoya Institute of Technology # All rights reserved # # $Id: Makefile.in,v 1.5 2012/07/27 08:44:57 sumomo Exp $ # SHELL=/bin/sh RM=@RM@ -f prefix=@prefix@ exec_prefix=@exec_prefix@ INSTALL=@INSTALL@ ############################################################ all: @echo Nothing to build install: install.man install.man.ja install.man: ${INSTALL} -d @mandir@/man1 for f in *.1; do \ @INSTALL_DATA@ $$f @mandir@/man1/$$f; \ done install.man.ja: ${INSTALL} -d @mandir@/ja/man1 cd ja; for f in *.1; do \ @INSTALL_DATA@ $$f @mandir@/ja/man1/$$f; \ done cd .. ############################################################ clean: @echo Nothing to do distclean: $(RM) Makefile