minor manual cleanup
[svn/Prometheus-QoS/.git] / Makefile
... / ...
CommitLineData
1PACKAGE=prometheus
2VERSION=0.7.7
3CFLAGS=-Wall
4prefix=/usr
5mandir=$(prefix)/share/man
6sbindir=$(prefix)/sbin
7sysconfdir=/etc/
8
9main: prometheus
10 $(CC) -o prometheus prometheus.c
11
12install: main
13 install -d $(sbindir)
14 install -d $(mandir)/man1
15 install -d $(mandir)/man5
16 install -d $(sysconfdir)/cron.d
17 install -m 755 prometheus $(sbindir)
18 install -m 644 prometheus.1 $(mandir)/man1
19 install -m 644 prometheus.conf.5 $(mandir)/man5
20 install -m 755 sample-configuration/prometheus.cron $(sysconfdir)/cron.d/prometheus
21
22clean:
23 rm -f prometheus
This page took 0.089187 seconds and 4 git commands to generate.