ok, so make install will work too
[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
12deb: main
13 ./prometheus.debian
14
15install: main
16 install -d $(sbindir)
17 install -d $(mandir)/man1
18 install -d $(mandir)/man5
19 install -d $(sysconfdir)/cron.d
20 install -d $(sysconfdir)/prometheus
21 install -m 755 prometheus $(sbindir)
22 install -m 644 prometheus.1 $(mandir)/man1
23 install -m 644 prometheus.conf.5 $(mandir)/man5
24 install -m 755 etc/cron.d/prometheus $(sysconfdir)/cron.d
25 install -m 755 etc/init.d/prometheus $(sysconfdir)/init.d
26 install -m 600 etc/prometheus/prometheus.conf $(sysconfdir)/prometheus
27 install -m 600 etc/prometheus/hosts $(sysconfdir)/prometheus
28
29clean:
30 rm -f prometheus
This page took 0.119496 seconds and 4 git commands to generate.