ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/FreeBSDAdmin/GNUmakefile
Revision: 777
Committed: 2006-05-26T03:03:26-07:00 (19 years, 1 month ago) by douglas
File size: 378 byte(s)
Log Message:
Bettar!

File Contents

# Content
1 MPD := $(shell hostname -s).xml
2
3 all: mpd.conf mpd.links
4
5 mpd.xml: $(MPD) mpd.xsl
6 saxon -o $@ $< $(word 2, $+)
7
8 mpd.conf: mpd.xml conf.xsl
9 saxon -o $@ $< $(word 2, $+)
10
11 mpd.links: mpd.xml links.xsl
12 saxon -o $@ $< $(word 2, $+)
13
14 .PHONY: install clean
15
16 install: all
17 install -Cv -g wheel -m 0644 mpd.conf mpd.links /usr/local/etc/mpd
18
19 clean:
20 -rm -f mpd.xml mpd.conf mpd.links