diff options
Diffstat (limited to 'fml/doc/ja/recipes/Makefile')
| -rw-r--r-- | fml/doc/ja/recipes/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/fml/doc/ja/recipes/Makefile b/fml/doc/ja/recipes/Makefile new file mode 100644 index 00000000..9b7e5103 --- /dev/null +++ b/fml/doc/ja/recipes/Makefile @@ -0,0 +1,40 @@ +# +# $FML: Makefile,v 1.1 2001/05/19 06:03:02 fukachan Exp $ +# + +# targets +TARGET = book +TARGET_DIR = ../../../../Documentation/ja/tutorial +ID = techtips.html + +### +### CONFIGURATIONS +### + +SOURCE = book +BOOK = recipies +BOOK_ID = index +TARGET_DIR = ../../../../Documentation/ja/$(BOOK) + + +### +### RULES +### + +_ARGV = SOURCE=$(SOURCE) BOOK=$(BOOK) BOOK_ID=$(BOOK_ID) +_MAKE = $(MAKE) -f ../Makefile.template $(_ARGV) + + +all: export + +html: + @ $(_MAKE) html + +clean: + @ $(_MAKE) clean + +export: + @ $(_MAKE) export + +scan: + @ $(_MAKE) scan |
