-
Notifications
You must be signed in to change notification settings - Fork 69
/
Makefile
134 lines (104 loc) · 2.81 KB
/
Makefile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Makefile
SHELL:=/bin/sh
RUBY=ruby
.PHONY: default doc test other
do: release
reminder:
ruby -I lib samples/reminder.rb
default: test
bday:
@ruby18 -I . vcf-to-ics.rb < _all.vcf | tee _bday.ics
doc-upload:
cd doc; scp -r . [email protected]:/var/www/gforge-projects/vpim/
agent-upload:
rsync -v --archive --compress --cvs-exclude --exclude=.svn/ --del lib octet:webapps/agent/
RDFLAGS = -w2
#--diagram
# --main doc/foo.html
TEST=test/test_all.rb
dcal:
sh -c "./ics-dump.rb ~/Library/Calendars/Play.ics"
sh -c "./ics-dump.rb ~/Library/Calendars/Events.ics"
test:
$(RUBY) $(TEST)
for e in ex_*.rb; do $(RUBY) -w -I lib $$e; done >/dev/null
#/usr/bin/ruby -w -I lib $(TEST)
#/opt/local/bin/ruby -w -I lib $(TEST)
test_new:
for r in /opt/local/bin/ruby /usr/local/bin/ruby18; do $$r -w $(TEST); done
test_old:
for r in /usr/bin/ruby; do $$r -w $(TEST); done
.PHONY: coverage
coverage:
rcov -Ilib -x "^/" test/test_all.rb
open coverage/index.html
outline:
zsh ./outline.sh > outline.txt
.PHONY: tags
tags:
/sw/bin/ctags -R --extra=+f lib test
#RUBYLIB=/Users/sam/p/ruby/ruby/lib /usr/local/bin/rdoc18 -f tags lib
#mv tags tags.ctags
#sort tags.ctags tags.rdoc > tags
ri:
rdoc18 -f ri lib
open:
open doc/index.html
SAMPLES := \
samples/ab-query.rb \
samples/cmd-itip.rb \
samples/ex_get_vcard_photo.rb \
samples/ex_cpvcard.rb \
samples/ex_mkvcard.rb \
samples/ex_mkv21vcard.rb \
samples/ex_mkyourown.rb \
samples/ics-dump.rb \
samples/ics-to-rss.rb \
samples/mutt-aliases-to-vcf.rb \
samples/reminder.rb \
samples/rrule.rb \
samples/tabbed-file-to-vcf.rb \
samples/vcf-dump.rb \
samples/vcf-lines.rb \
samples/vcf-to-mutt.rb \
samples/vcf-to-ics.rb \
.PHONY: doc
doc:
rm -rf doc/
rdoc $(RDFLAGS) lib/vpim CHANGES COPYING README.rdoc samples/README.mutt
for s in $(SAMPLES); do cp $$s doc/`basename $$s .rb`.txt; done
chmod u=rw doc/*.txt
chmod go=r doc/*.txt
mkdir -p $(HOME)/Sites/vpim
cp -r doc/* $(HOME)/Sites/vpim/
open doc/index.html
ruby -I lib -w -rpp ex_ics_api.rb > ex_ics_api.out
V:=$(shell ruby stamp.rb)
P:=vpim-$V
R:=../releases/$P
release: stamp gem
install:
for r in /usr/bin/ruby /opt/local/bin/ruby ruby18; do (cd $R; $$r install.rb config; sudo $$r install.rb install); done
stamp:
ruby stamp.rb $V > lib/vpim/version.rb
gem:
mkdir -p ../releases
mkdir -p bin
cp -v samples/reminder.rb bin/reminder
cp -v samples/rrule.rb bin/rrule
chmod +x bin/*
gem build vpim.gemspec
pkg:
rm -rf $R/*
mkdir -p $R/lib
mkdir -p $R/samples
mkdir -p $R/test
cp COPYING README.rdoc CHANGES setup.rb $R/
cp -vr lib/vpim $R/lib/
cp samples/README.mutt $R/samples
cp $(SAMPLES) $R/samples
cp samples/osx-wrappers.rb $R/samples
cp test/test_*.rb $R/test
# no docs: cp -r doc $R/
cd ../releases && tar -zcf $P.tgz $P
# vim:noexpandtab:tabstop=2:sw=2: