ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/saidar/Makefile.am
Revision: 1.2
Committed: Thu Oct 9 10:37:42 2003 UTC (20 years, 7 months ago) by tdb
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_7, LIBSTATGRAB_0_6_1, LIBSTATGRAB_0_6
Changes since 1.1: +10 -1 lines
Log Message:
Enable binaries being setgid kmem on FreeBSD. Will set this based on
the operating system, but is overridable using a configure flag.

File Contents

# Content
1 # Makefile for libstatgrab/src/saidar
2 # http://www.i-scream.org/
3 # $Id: Makefile.am,v 1.1 2003/10/04 16:05:57 tdb Exp $
4
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
17 if SETGIDBINS
18 # Some operating systems need the binary to be setgid kmem
19 install-exec-local:
20 chgrp kmem @bindir@/saidar
21 chmod g+s @bindir@/saidar
22 else
23 install-exec-local:
24 endif