added patch needed to run on redhat platforms and added sample config files
[svn/Prometheus-QoS/.git] / Makefile
CommitLineData
a4f661fc 1PACKAGE=prometheus
0c419f83 2VERSION=0.7.7
a4f661fc 3CFLAGS=-Wall
4prefix=/usr
5mandir=$(prefix)/share/man
f2600e3c 6sbindir=$(prefix)/sbin
7sysconfdir=/etc/
a4f661fc 8
9main: prometheus
10 $(CC) -o prometheus prometheus.c
11
12install: main
f2600e3c 13 install -d $(sbindir)
14 install -d $(mandir)/man1
15 install -d $(mandir)/man5
16 install -d $(sysconfdir)/cron.d
6f5053d5 17 install -d $(sysconfdir)/prometheus
f2600e3c 18 install -m 755 prometheus $(sbindir)
19 install -m 644 prometheus.1 $(mandir)/man1
20 install -m 644 prometheus.conf.5 $(mandir)/man5
21 install -m 755 sample-configuration/prometheus.cron $(sysconfdir)/cron.d/prometheus
6f5053d5 22 install -m 600 sample-configuration/prometheus.conf $(sysconfdir)/prometheus
23 install -m 600 sample-configuration/hosts $(sysconfdir)/prometheus
a4f661fc 24
25clean:
26 rm -f prometheus
This page took 0.161721 seconds and 4 git commands to generate.