Browse CVS Repository
Contents of /exerb/exerbtk/doc/Makefile
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
Tue Feb 3 05:31:15 2004 UTC
(20 years, 2 months ago)
by yuya
Branch: MAIN
CVS Tags: snapshot20040204, HEAD
Changes since 1.1: +2 -2 lines
* Makefileを簡略化
| 1 |
|
| 2 |
#==============================================================================# |
| 3 |
# $Id: Makefile,v 1.1 2004/02/03 05:23:11 yuya Exp $ |
| 4 |
#==============================================================================# |
| 5 |
|
| 6 |
SRCS = $(wildcard *.rd) |
| 7 |
DOCS = $(SRCS:.rd=.html) |
| 8 |
|
| 9 |
all: $(DOCS) |
| 10 |
|
| 11 |
clean: |
| 12 |
rm -f $(DOCS) |
| 13 |
|
| 14 |
%.html : %.rd |
| 15 |
@echo $< =\> $@ |
| 16 |
@ruby -r kconv -e 'STDOUT.print(Kconv.toeuc(STDIN.read))' < $< | rd2 --out-code=sjis -r rd/rd2html-lib --with-css=http://exerb.sourceforge.jp/share/print.css --html-title='Exerb/Tk' > $@ |
| 17 |
@chmod 644 $@ |
| 18 |
|
| 19 |
#==============================================================================# |
| 20 |
#==============================================================================# |
|