ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/statgrab/Makefile.am
Revision: 1.9
Committed: Sun Feb 15 21:18:37 2004 UTC (20 years, 3 months ago) by tdb
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_10, LIBSTATGRAB_0_9
Changes since 1.8: +2 -1 lines
Log Message:
Seems we sometimes need root privs on linux :/

File Contents

# User Rev Content
1 tdb 1.1 # Makefile for libstatgrab/src/statgrab
2 tdb 1.8 # http://www.i-scream.org/libstatgrab/
3 tdb 1.9 # $Id: Makefile.am,v 1.8 2004/01/19 16:49:23 tdb Exp $
4 tdb 1.1
5 tdb 1.4 if STATGRAB
6 tdb 1.1 bin_PROGRAMS = statgrab
7 ats 1.2 bin_SCRIPTS = statgrab-make-mrtg-config statgrab-make-mrtg-index
8 tdb 1.4 endif
9    
10 tdb 1.1 statgrab_SOURCES = statgrab.c
11    
12     INCLUDES = -I$(top_srcdir) -I$(top_builddir) \
13     -I$(top_srcdir)/src -I$(top_builddir)/src\
14     -I$(top_srcdir)/src/libstatgrab -I$(top_builddir)/src/libstatgrab
15    
16 tdb 1.3 LDADD = $(top_builddir)/src/libstatgrab/libstatgrab.la @LINKFLAGS@
17 tdb 1.5
18 tdb 1.6 install-exec-local:
19 tdb 1.7 if STATGRAB
20 tdb 1.5 if SETGIDBINS
21     # Some operating systems need the binary to be setgid kmem
22     chgrp kmem @bindir@/statgrab
23     chmod g+s @bindir@/statgrab
24 tdb 1.7 endif
25     if SETUIDBINS
26     # Some operating systems need the binary to be setuid root
27 tdb 1.9 chown root @bindir@/statgrab
28 tdb 1.7 chmod u+s @bindir@/statgrab
29 tdb 1.6 endif
30 tdb 1.5 endif