1 |
|
# Makefile for libstatgrab/src/statgrab |
2 |
< |
# http://www.i-scream.org/ |
2 |
> |
# http://www.i-scream.org/libstatgrab/ |
3 |
|
# $Id$ |
4 |
|
|
5 |
|
if STATGRAB |
14 |
|
-I$(top_srcdir)/src/libstatgrab -I$(top_builddir)/src/libstatgrab |
15 |
|
|
16 |
|
LDADD = $(top_builddir)/src/libstatgrab/libstatgrab.la @LINKFLAGS@ |
17 |
+ |
|
18 |
+ |
install-exec-local: |
19 |
+ |
if STATGRAB |
20 |
+ |
if SETGIDBINS |
21 |
+ |
# Some operating systems need the binary to be setgid kmem |
22 |
+ |
chgrp kmem $(DESTDIR)@bindir@/statgrab |
23 |
+ |
chmod g+s $(DESTDIR)@bindir@/statgrab |
24 |
+ |
endif |
25 |
+ |
if SETUIDBINS |
26 |
+ |
# Some operating systems need the binary to be setuid root |
27 |
+ |
chown root $(DESTDIR)@bindir@/statgrab |
28 |
+ |
chmod u+s $(DESTDIR)@bindir@/statgrab |
29 |
+ |
endif |
30 |
+ |
endif |