Makefile edited so now prometheus.cron is installed during make install
[svn/Prometheus-QoS/.git] / Makefile
index dabf24250bec8006a1eafbe17b0fbf0aa6384092..782989c5fdf5dad47689b18912c43f9adcd54f17 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,10 @@
 PACKAGE=prometheus
-VERSION=0.7.1
+VERSION=0.7.7
 CFLAGS=-Wall
 prefix=/usr
 mandir=$(prefix)/share/man
 bindir=$(prefix)/sbin
+crondir=/etc/cron.d
 
 main: prometheus
        $(CC) -o prometheus prometheus.c
@@ -11,6 +12,7 @@ main: prometheus
 install: main
        install -d $(bindir)
        install -m 755 prometheus $(bindir)
+       install -m 755 sample_config/prometheus.cron $(crondir)/prometheus
 
 clean:
        rm -f prometheus
This page took 0.130255 seconds and 4 git commands to generate.