# -*- Makefile -*- # $Id: Makefile,v 3.2 1999/01/15 17:34:18 tsuchiya Exp $ # This file is part of IREX tools. # Please refer "Copyright file" at the root directory. # (C) IREX committee IREX実行委員会. All rights reserved. # byte compile する時に用いる Emacs EMACS = mule TARGET = irex-article.elc irex-auto.elc irex-common.elc irex-input.elc irex-judge.elc \ irex-list.elc irex-mainichi.elc irex-tougou.elc irex-browse.elc SOURCE = irex-article.el irex-auto.el irex-common.el irex-input.el irex-judge.el \ irex-list.el irex-mainichi.el irex-tougou.el irex-browse.el .SUFFIXES: .SUFFIXES: .el .elc .el.elc: $(EMACS) -batch -q -l ./lp.el -f batch-byte-compile $< compile: lp.el $(TARGET) rm -f lp.el lp.el: @echo '(cond ((and (boundp '"'"'emacs-major-version)(= emacs-major-version 20))' \ '(set-language-environment "Japanese")' \ '(set-default-coding-systems '"'"'euc-japan)' \ '(set-terminal-coding-system '"'"'euc-japan)))' \ '(setq load-path (cons "'`pwd`'" load-path))' >lp.el clean: rm -f *.elc lp.el archive: clean co $(SOURCE) sample.emacs Makefile