venus: Remove dedebug
[openafs.git] / src / libuafs / MakefileProto.LINUX.in
index 94a1632..4dd185a 100644 (file)
@@ -13,40 +13,17 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
 # MakefileProto for LINUX systems
-# This Makefile generates two libraries: the standard libuafs and libjuafs,
-# a libuafs variant that is designed to link with Java enabled libraries.
-# The libjuafs library implements the AFS_WEB_ENHANCEMENTS definition, see
-# the libuafs README for details.
 
 # System specific build commands and flags
 DEFINES= -D_REENTRANT -DKERNEL -DUKERNEL
 KOPTS=
 SYS_NAME=@AFS_SYSNAME@
 ifeq (${SYS_NAME}, ppc64_linux26)
-CFLAGS=-fPIC
-else
-CFLAGS=
+UAFS_CFLAGS=-fPIC
 endif
-CFLAGS+= -I. -I.. -I${TOP_OBJDIR}/src/config ${FSINCLUDES} $(DEFINES) $(KOPTS) ${DBG} $(XCFLAGS)
-OPTF=${OPTMZ}
 
-TEST_CFLAGS=-pthread -D_REENTRANT -DAFS_PTHREAD_ENV -DAFS_LINUX22_ENV $(XCFLAGS)
+TEST_CFLAGS=-pthread -D_REENTRANT -DAFS_PTHREAD_ENV -DAFS_LINUX_ENV $(XCFLAGS)
 TEST_LDFLAGS=
 TEST_LIBS=-lpthread @LIB_crypt@
 
-LIBUAFS = libuafs.a
-LIBJUAFS = libjuafs.a
-
 include Makefile.common
-
-$(LIBUAFS): $(UAFSOBJ)
-       -$(RM) -f $(LIBUAFS)
-       $(AR) $(ARFLAGS) $(LIBUAFS) $(UAFSOBJ)
-
-libuafs_pic.a: $(PICUAFSOBJ)
-       -$(RM) -f libuafs_pic.a
-       $(AR) $(ARFLAGS) libuafs_pic.a $(PICUAFSOBJ)
-
-$(LIBJUAFS): $(JUAFSOBJ)
-       -$(RM) -f $(LIBJUAFS)
-       $(AR) $(ARFLAGS) $(LIBJUAFS) $(JUAFSOBJ)