Added draft of prometheus.conf manpage
[svn/Prometheus-QoS/.git] / Makefile
... / ...
CommitLineData
1PACKAGE=prometheus
2VERSION=0.7.7
3CFLAGS=-Wall
4prefix=/usr
5mandir=$(prefix)/share/man
6bindir=$(prefix)/sbin
7crondir=/etc/cron.d
8
9main: prometheus
10 $(CC) -o prometheus prometheus.c
11
12install: main
13 install -d $(bindir)
14 install -m 755 prometheus $(bindir)
15 install -m 755 sample_config/prometheus.cron $(crondir)/prometheus
16
17clean:
18 rm -f prometheus
This page took 0.087282 seconds and 4 git commands to generate.