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