# # BEGIN COPYRIGHT BLOCK # This Program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; version 2 of the License. # # This Program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # this Program; if not, write to the Free Software Foundation, Inc., 59 Temple # Place, Suite 330, Boston, MA 02111-1307 USA. # # In addition, as a special exception, Red Hat, Inc. gives You the additional # right to link the code of this Program with code not covered under the GNU # General Public License ("Non-GPL Code") and to distribute linked combinations # including the two, subject to the limitations in this paragraph. Non-GPL Code # permitted under this exception must only link to the code of this Program # through those well defined interfaces identified in the file named EXCEPTION # found in the source code files (the "Approved Interfaces"). The files of # Non-GPL Code may instantiate templates or use macros or inline functions from # the Approved Interfaces without causing the resulting work to be covered by # the GNU General Public License. Only Red Hat, Inc. may make changes or # additions to the list of Approved Interfaces. You must obey the GNU General # Public License in all respects for all of the Program code and other code used # in conjunction with the Program except the Non-GPL Code covered by this # exception. If you modify this file, you may extend this exception to your # version of the file, but you are not obligated to do so. If you do not wish to # provide this exception without modification, you must delete this exception # statement from your version and license this file solely under the GPL without # exception. # # # Copyright (C) 2001 Sun Microsystems, Inc. Used by permission. # Copyright (C) 2005 Red Hat, Inc. # All rights reserved. # END COPYRIGHT BLOCK # # # BUILD_ROOT=../../.. MODULE=LibAcl include $(BUILD_ROOT)/nsdefs.mk OBJDEST=. UTESTDEST=utest include $(BUILD_ROOT)/nsconfig.mk MODULE_CFLAGS=-I$(BUILD_ROOT)/include/libaccess -I$(BUILD_ROOT)/include -I$(BUILD_ROOT)/include/public -I. -DACL_LIB_INTERNAL include $(INCLUDE_DEPENDS) #TESTFLAGS = -DUTEST -DDEBUG_LEVEL_2 TESTFLAGS = -DUTEST CC = $(CCC) CSRC = acltest.cpp onetest.cpp ustubs.cpp twotest.cpp TSRC = aclfile0 aclfile1 aclfile2 aclfile3 aclfile4 aclfile5 aclfile6 aclfile7 aclfile8 aclfile9 aclfile10 aclfile11 aclfile12 aclfile13 aclfile14 aclfile15 aclfile16 aclfile17 aclfile18 aclfile19 test.ref SRC = $(CSRC) $(TSRC) XSRC = \ ../oneeval.cpp \ ../lastod.cpp \ ../lasip.cpp \ ../aclutil.cpp \ ../lasdns.cpp \ ../acl.tab.cpp \ ../acl.yy.cpp \ ../acltools.cpp \ ../aclspace.cpp \ ../lasgroup.cpp \ ../lasuser.cpp \ ../nseframe.cpp \ ../aclcache.cpp \ ../register.cpp \ ../symbols.cpp \ ../method.cpp \ ../access_plhash.cpp \ ../authdb.cpp COBJ = $(CSRC:%.cpp=%.o) XOBJ = $(XSRC:../%.cpp=%.o) # This may be needed for other platforms too ifeq ($(ARCH), IRIX) XLIBS = -rpath $(LDAP_LIBPATH) endif ifeq ($(ARCH), HPUX) XLIBS = -lpthread endif ifeq ($(ARCH), SOLARIS) XLIBS = -lsocket -lnsl -ldl -lposix4 endif XLIBS+= $(OBJDIR)/lib/base/plist.o \ $(OBJDIR)/lib/base/pool.o \ $(OBJDIR)/lib/base/util.o \ $(OBJDIR)/lib/base/ereport.o \ $(OBJDIR)/lib/base/system.o \ $(OBJDIR)/lib/base/shexp.o \ $(OBJDIR)/lib/base/file.o \ $(OBJDIR)/lib/base/systhr.o \ $(OBJDIR)/lib/base/nscperror.o \ $(OBJDIR)/lib/libldapu.a \ $(LIBNSPR) all: $(COBJ) $(TSRC) acltest ./acltest > test.out diff test.ref test.out @echo @echo "The unit test has passed if there is no diff output and the" @echo "Purify window shows no errors and 0 bytes leaked." @echo @echo "Run - gmake coverage - manually to get code coverage analysis." @echo aclparse: ustubs.o testmain.o $(XOBJ) purify $(CC) -o aclparse testmain.o $(XOBJ) ustubs.o $(XLIBS) aclparse.pure: acl.tab.o acl.yy.o testmain.o acltools.o ustubs.o purify -user-path=.. $(CC) -o aclparse.pure $(XOBJ) ustubs.o $(XLIBS) onetest: onetest.o ustubs.o $(XOBJ) $(CC) -o onetest onetest.o $(XOBJ) ustubs.o $(XLIBS) twotest: twotest.o ustubs.o $(XOBJ) $(CC) -o twotest twotest.o $(XOBJ) ustubs.o $(XLIBS) acltest: acltest.o ustubs.o $(XOBJ) # purify $(CC) -o acltest acltest.o $(XOBJ) ustubs.o $(XLIBS) $(CC) -o acltest acltest.o $(XOBJ) ustubs.o $(XLIBS) coverage: acltest.o ustubs.o $(XOBJ) purecov $(CC) -o acltestcov acltest.o $(XOBJ) ustubs.o $(XLIBS) rm -f *.pcv acltestcov #$(XOBJ): $(XSRC) # cd ..; gmake OBJDEST=$(UTESTDEST) CC=$(OCC) TESTFLAGS=$(TESTFLAGS) %.o:../%.c $(CC) -c $(CFLAGS) $(TESTFLAGS) $(MCC_INCLUDE) -I.. $< -o $(OBJDEST)/$*.o %.o:../%.cpp $(CC) -c $(CFLAGS) $(TESTFLAGS) $(MCC_INCLUDE) -I.. $< -o $(OBJDEST)/$*.o