# Copyright (c) 2001-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 SHELL=/bin/sh RM=@RM@ -f prefix=@prefix@ exec_prefix=@exec_prefix@ INSTALL=@INSTALL@ ############################################################ TARGET=mkgshmm all: $(TARGET) $(TARGET): @echo 'nothing to do. just do "make install"' ############################################################ install: install.bin install.bin: $(TARGET) ${INSTALL} -d @bindir@ @INSTALL_PROGRAM@ $(TARGET) @bindir@ ############################################################ clean: $(RM) *.o *~ core $(RM) $(TARGET) $(TARGET).exe distclean: $(RM) *.o *~ core $(RM) $(TARGET) $(TARGET).exe $(RM) config.cache config.log config.status $(RM) Makefile