diff options
| author | Tom Feist <shabble@metavore.org> | 2011-04-22 02:13:25 +0000 | 
|---|---|---|
| committer | Tom Feist <shabble@metavore.org> | 2011-04-22 02:13:25 +0000 | 
| commit | 631f4989e8376b1bb8e52c2fbf8e924e85d3d9c8 (patch) | |
| tree | 901235751018438af6ac71571148772cfef1ca68 | |
| parent | vim-mode/vim_mode: FINAL doc update for now. Or Else. (diff) | |
| download | irssi-scripts-631f4989e8376b1bb8e52c2fbf8e924e85d3d9c8.tar.gz irssi-scripts-631f4989e8376b1bb8e52c2fbf8e924e85d3d9c8.zip | |
start of Makefile to automate generation of README.pod docs for each script
with embedded POD.
| -rw-r--r-- | Makefile | 42 | 
1 files changed, 42 insertions, 0 deletions
| diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b351d8e --- /dev/null +++ b/Makefile @@ -0,0 +1,42 @@ +SCRIPT_DIRS = \ +		history-search \ +		ido-mode \ +		prompt_info \ +		quit-notify \ +		sb-position \ +		scrolled-reminder \ +		tinyurl-tabcomplete \ +		vim-mode + +#		act_hide \ +#		auto-server \ +#		colour-popup \ +#		feature-tests \ +#		joinforward \ +#		masshilight \ +#		modules \ +#		no-key-modes \ +#		patches \ +#		testing \ +#		throttled-autojoin \ +#		undo \ +#		url_hilight \ + +SCRIPT_FILES = 	$(foreach FOO, $(SCRIPT_DIRS), $(wildcard $(FOO)/*.pl)) + +$GENERATOR = "./readme_generator" + +.PHONY: all clean rebuild + +all: + +	echo making all: $(SCRIPT_DIRS) +	echo files are: $(SCRIPT_FILES) + +rebuild: clean all + +clean: +	-echo cleaning. + +README.pod: +	-echo stuff | 
