ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/saidar/Makefile.am
Revision: 1.6
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.5: +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/saidar
2 tdb 1.5 # http://www.i-scream.org/libstatgrab/
3 tdb 1.6 # $Id: Makefile.am,v 1.5 2004/01/19 16:49:23 tdb Exp $
4 tdb 1.1
5     if SAIDAR
6     bin_PROGRAMS = saidar
7     endif
8    
9     saidar_SOURCES = saidar.c
10    
11     INCLUDES = @SAIDARCPPFLAGS@ -I$(top_srcdir) -I$(top_builddir) \
12     -I$(top_srcdir)/src -I$(top_builddir)/src\
13     -I$(top_srcdir)/src/libstatgrab -I$(top_builddir)/src/libstatgrab
14    
15     LDADD = $(top_builddir)/src/libstatgrab/libstatgrab.la @SAIDARLIBS@ @LINKFLAGS@
16 tdb 1.2
17 tdb 1.3 install-exec-local:
18 tdb 1.4 if SAIDAR
19 tdb 1.2 if SETGIDBINS
20     # Some operating systems need the binary to be setgid kmem
21     chgrp kmem @bindir@/saidar
22     chmod g+s @bindir@/saidar
23 tdb 1.4 endif
24     if SETUIDBINS
25     # Some operating systems need the binary to be setuid root
26 tdb 1.6 chown root @bindir@/saidar
27 tdb 1.4 chmod u+s @bindir@/saidar
28 tdb 1.3 endif
29 tdb 1.2 endif