ruby-wordexp.git  about / heads / tags
perform word expansions (interface to the wordexp(3) POSIX function)
blob 06b2fe115fce314e1d3b4d697bf4fdec43d9d090 606 bytes (raw)
$ git show v1.0.0:GNUmakefile	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
all::
RSYNC_DEST := bogomips.org:/srv/bogomips/ruby-wordexp
rfproject := qrp
rfpackage := wordexp
pkg_extra = doc/api.txt
include pkg.mk

check: test

doc/api.txt: RI = ri -w 78 -f rdoc --no-pager -d doc/ri --no-standard-docs
doc/api.txt: $(ext_src)
	rdoc -r -o doc/ri $(ext_src)
	(  $(RI) Wordexp; $(RI) 'Wordexp#wordexp' ) \
	 </dev/null | grep -v from.*doc/ri > $@+
	mv $@+ $@

doc::
	$(MAKE) doc/api.txt

RSYNC = rsync --exclude '*.html' --exclude '*.html.gz' \
        --exclude images --exclude '*.css' --exclude '*.css.gz' \
	--exclude created.* \
	--exclude '*.ri' --exclude '*.ri.gz' --exclude ri

git clone https://yhbt.net/ruby-wordexp.git