37 lines
844 B
Plaintext
37 lines
844 B
Plaintext
|
##
|
||
|
# defs for SuSE Linux
|
||
|
# Thorsten Kukuk <kukuk@suse.de>
|
||
|
##
|
||
|
# this file indicates the compiler and the various hardware/OS dependent
|
||
|
# flags for installation. It also defines the various destinations of
|
||
|
# installed files on the system.
|
||
|
#
|
||
|
# This file is the version used for SuSE Linux.
|
||
|
|
||
|
OS=linux
|
||
|
ARCH=$(shell rpm --showrc | grep 'build arch' | grep -v "compatible" | sed 's/^.*: //g')
|
||
|
CC=gcc
|
||
|
INSTALL=install
|
||
|
MKDIR=mkdir -p
|
||
|
CFLAGS=$(RPM_OPT_FLAGS) -pipe -D_REENTRANT
|
||
|
ULIBS=#-lefence
|
||
|
LD=ld
|
||
|
LD_D=gcc -shared -Xlinker -x
|
||
|
LD_L=$(LD) -x -shared
|
||
|
USESONAME=yes
|
||
|
SOSWITCH=-soname
|
||
|
LINKLIBS=-lc
|
||
|
NEEDSONAME=yes
|
||
|
LDCONFIG=/sbin/ldconfig
|
||
|
AR=ar -cr
|
||
|
RANLIB=ranlib
|
||
|
FAKEROOT=$(RPM_BUILD_ROOT)
|
||
|
PREFIX=
|
||
|
SUPLEMENTED=$(PREFIX)/sbin
|
||
|
LIBDIR=$(PREFIX)/lib
|
||
|
SECUREDIR=$(LIBDIR)/security
|
||
|
INCLUDED=/usr/include/security
|
||
|
CONFIGED=/etc
|
||
|
SCONFIGED=/etc/security
|
||
|
EXTRALS=-lcrypt
|