mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
830cb48cbd
Only darwin had $(XCFLAGS) in the libuafs build for some reason. Add it to all platforms, so they get e.g. -Wall if so configured. Change-Id: Ifab39af3abf087932feb1b9085ccb26baaec3164 Reviewed-on: http://gerrit.openafs.org/1745 Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
# Copyright 2000, International Business Machines Corporation and others.
|
|
# All Rights Reserved.
|
|
#
|
|
# This software has been released under the terms of the IBM Public
|
|
# License. For details, see the LICENSE file in the top-level source
|
|
# directory or online at http://www.openafs.org/dl/license10.html
|
|
#
|
|
srcdir=@srcdir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
|
|
|
|
# System specific build commands and flags
|
|
CC = @CC@
|
|
DEFINES= -D_REENTRANT -DKERNEL -DUKERNEL
|
|
KOPTS=
|
|
CFLAGS=-I. -I.. -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBG} $(XCFLAGS)
|
|
OPTF=-O
|
|
# WEBOPTS = -I../nsapi -DNETSCAPE_NSAPI -DNET_SSL -DXP_UNIX -DMCC_HTTPD
|
|
|
|
TEST_CFLAGS=-D_REENTRANT -DAFS_PTHREAD_ENV -DAFS_DFFBSD_ENV $(XCFLAGS)
|
|
TEST_LDFLAGS=
|
|
TEST_LIBS=-lpthread
|
|
<all>
|
|
|
|
LIBUAFS = libuafs.a
|
|
LIBJUAFS = libjuafs.a
|
|
LIBAFSWEB = nsafs.so
|
|
LIBAFSWEBKRB = nsafs.krb.so
|
|
|
|
include Makefile.common
|
|
|
|
$(LIBUAFS): $(UAFSOBJ)
|
|
-$(RM) -f $(LIBUAFS)
|
|
$(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
|
|
|
|
$(LIBJUAFS): $(JUAFSOBJ)
|
|
-$(RM) -f $(LIBJUAFS)
|
|
$(AR) $(ARFLAGS) $(LIBJUAFS) $(JUAFSOBJ)
|
|
|
|
$(LIBAFSWEB): $(AFSWEBOBJ) ${DES}/libdes.a
|
|
-$(RM) -f $(LIBAFSWEB)
|
|
ld -b $(LIBAFSWEB) $(AFSWEBOBJ) ${DES}/libdes.a $(WEBLIBS)
|
|
|
|
$(LIBAFSWEBKRB): $(AFSWEBOBJKRB) ${DES}/libdes.a
|
|
-$(RM) -f $(LIBAFSWEBKRB)
|
|
ld -b $(LIBAFSWEBKRB) $(AFSWEBOBJKRB) ${DES}/libdes.a $(WEBLIBS)
|