zvyseni verze na 0.8.0 - vyvojova, netestovana
[svn/Prometheus-QoS/.git] / Makefile
1 PACKAGE=prometheus
2 VERSION=0.7.1
3 CFLAGS=-Wall
4 prefix=/usr
5 mandir=$(prefix)/share/man
6 bindir=$(prefix)/sbin
7
8 main: prometheus
9 $(CC) -o prometheus prometheus.c
10
11 install: main
12 install -d $(bindir)
13 install -m 755 prometheus $(bindir)
14
15 clean:
16 rm -f prometheus
This page took 0.239503 seconds and 4 git commands to generate.