From 631f4989e8376b1bb8e52c2fbf8e924e85d3d9c8 Mon Sep 17 00:00:00 2001 From: Tom Feist Date: Fri, 22 Apr 2011 03:13:25 +0100 Subject: start of Makefile to automate generation of README.pod docs for each script with embedded POD. --- Makefile | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3