File: Makefile

package info (click to toggle)
ruby-defaults 4.5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 88 kB
  • sloc: makefile: 15
file content (21 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Makefile
# $Id: Makefile,v 1.4 2003-08-22 18:06:33 ukai Exp $
#

all: text html

%.txt: %.sgml
	LANG=C debiandoc2text $<

%.html/index.html: %.sgml
	LANG=C debiandoc2html $<

txt text: ruby-policy.txt
html: ruby-policy.html/index.html

clean:
	-rm -f ruby-policy.txt
	-rm -rf ruby-policy.html

#