blob: b351d8eac73e9ec23f24e37d1d488000b8709808 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
|