changeset 38:447dcca689e0 PR_univ

changed name of netbeans proj dirs -- add renamed dirs
author Sean Halle <seanhalle@yahoo.com>
date Fri, 14 Feb 2014 07:19:19 -0800
parents c21c30e45a17
children fd25f8700c9c
files nb__prhash/Makefile nb__prhash/nbproject/Makefile-Debug.mk nb__prhash/nbproject/Makefile-Release.mk nb__prhash/nbproject/Makefile-impl.mk nb__prhash/nbproject/Makefile-variables.mk nb__prhash/nbproject/Package-Debug.bash nb__prhash/nbproject/Package-Release.bash nb__prhash/nbproject/configurations.xml nb__prhash/nbproject/private/Makefile-variables.mk nb__prhash/nbproject/private/configurations.xml nb__prhash/nbproject/private/private.xml nb__prhash/nbproject/project.xml nb__prhash_pic/Makefile nb__prhash_pic/nbproject/Makefile-Debug.mk nb__prhash_pic/nbproject/Makefile-Release.mk nb__prhash_pic/nbproject/Makefile-impl.mk nb__prhash_pic/nbproject/Makefile-variables.mk nb__prhash_pic/nbproject/Package-Debug.bash nb__prhash_pic/nbproject/Package-Release.bash nb__prhash_pic/nbproject/configurations.xml nb__prhash_pic/nbproject/private/Makefile-variables.mk nb__prhash_pic/nbproject/private/configurations.xml nb__prhash_pic/nbproject/private/private.xml nb__prhash_pic/nbproject/project.xml
diffstat 24 files changed, 1652 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/nb__prhash/Makefile	Fri Feb 14 07:19:19 2014 -0800
     1.3 @@ -0,0 +1,128 @@
     1.4 +#
     1.5 +#  There exist several targets which are by default empty and which can be 
     1.6 +#  used for execution of your targets. These targets are usually executed 
     1.7 +#  before and after some main targets. They are: 
     1.8 +#
     1.9 +#     .build-pre:              called before 'build' target
    1.10 +#     .build-post:             called after 'build' target
    1.11 +#     .clean-pre:              called before 'clean' target
    1.12 +#     .clean-post:             called after 'clean' target
    1.13 +#     .clobber-pre:            called before 'clobber' target
    1.14 +#     .clobber-post:           called after 'clobber' target
    1.15 +#     .all-pre:                called before 'all' target
    1.16 +#     .all-post:               called after 'all' target
    1.17 +#     .help-pre:               called before 'help' target
    1.18 +#     .help-post:              called after 'help' target
    1.19 +#
    1.20 +#  Targets beginning with '.' are not intended to be called on their own.
    1.21 +#
    1.22 +#  Main targets can be executed directly, and they are:
    1.23 +#  
    1.24 +#     build                    build a specific configuration
    1.25 +#     clean                    remove built files from a configuration
    1.26 +#     clobber                  remove all built files
    1.27 +#     all                      build all configurations
    1.28 +#     help                     print help mesage
    1.29 +#  
    1.30 +#  Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
    1.31 +#  .help-impl are implemented in nbproject/makefile-impl.mk.
    1.32 +#
    1.33 +#  Available make variables:
    1.34 +#
    1.35 +#     CND_BASEDIR                base directory for relative paths
    1.36 +#     CND_DISTDIR                default top distribution directory (build artifacts)
    1.37 +#     CND_BUILDDIR               default top build directory (object files, ...)
    1.38 +#     CONF                       name of current configuration
    1.39 +#     CND_PLATFORM_${CONF}       platform name (current configuration)
    1.40 +#     CND_ARTIFACT_DIR_${CONF}   directory of build artifact (current configuration)
    1.41 +#     CND_ARTIFACT_NAME_${CONF}  name of build artifact (current configuration)
    1.42 +#     CND_ARTIFACT_PATH_${CONF}  path to build artifact (current configuration)
    1.43 +#     CND_PACKAGE_DIR_${CONF}    directory of package (current configuration)
    1.44 +#     CND_PACKAGE_NAME_${CONF}   name of package (current configuration)
    1.45 +#     CND_PACKAGE_PATH_${CONF}   path to package (current configuration)
    1.46 +#
    1.47 +# NOCDDL
    1.48 +
    1.49 +
    1.50 +# Environment 
    1.51 +MKDIR=mkdir
    1.52 +CP=cp
    1.53 +CCADMIN=CCadmin
    1.54 +
    1.55 +
    1.56 +# build
    1.57 +build: .build-post
    1.58 +
    1.59 +.build-pre:
    1.60 +# Add your pre 'build' code here...
    1.61 +
    1.62 +.build-post: .build-impl
    1.63 +# Add your post 'build' code here...
    1.64 +
    1.65 +
    1.66 +# clean
    1.67 +clean: .clean-post
    1.68 +
    1.69 +.clean-pre:
    1.70 +# Add your pre 'clean' code here...
    1.71 +
    1.72 +.clean-post: .clean-impl
    1.73 +# Add your post 'clean' code here...
    1.74 +
    1.75 +
    1.76 +# clobber
    1.77 +clobber: .clobber-post
    1.78 +
    1.79 +.clobber-pre:
    1.80 +# Add your pre 'clobber' code here...
    1.81 +
    1.82 +.clobber-post: .clobber-impl
    1.83 +# Add your post 'clobber' code here...
    1.84 +
    1.85 +
    1.86 +# all
    1.87 +all: .all-post
    1.88 +
    1.89 +.all-pre:
    1.90 +# Add your pre 'all' code here...
    1.91 +
    1.92 +.all-post: .all-impl
    1.93 +# Add your post 'all' code here...
    1.94 +
    1.95 +
    1.96 +# build tests
    1.97 +build-tests: .build-tests-post
    1.98 +
    1.99 +.build-tests-pre:
   1.100 +# Add your pre 'build-tests' code here...
   1.101 +
   1.102 +.build-tests-post: .build-tests-impl
   1.103 +# Add your post 'build-tests' code here...
   1.104 +
   1.105 +
   1.106 +# run tests
   1.107 +test: .test-post
   1.108 +
   1.109 +.test-pre:
   1.110 +# Add your pre 'test' code here...
   1.111 +
   1.112 +.test-post: .test-impl
   1.113 +# Add your post 'test' code here...
   1.114 +
   1.115 +
   1.116 +# help
   1.117 +help: .help-post
   1.118 +
   1.119 +.help-pre:
   1.120 +# Add your pre 'help' code here...
   1.121 +
   1.122 +.help-post: .help-impl
   1.123 +# Add your post 'help' code here...
   1.124 +
   1.125 +
   1.126 +
   1.127 +# include project implementation makefile
   1.128 +include nbproject/Makefile-impl.mk
   1.129 +
   1.130 +# include project make variables
   1.131 +include nbproject/Makefile-variables.mk
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/nb__prhash/nbproject/Makefile-Debug.mk	Fri Feb 14 07:19:19 2014 -0800
     2.3 @@ -0,0 +1,97 @@
     2.4 +#
     2.5 +# Generated Makefile - do not edit!
     2.6 +#
     2.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
     2.8 +# has a -pre and a -post target defined where you can add customized code.
     2.9 +#
    2.10 +# This makefile implements configuration specific macros and targets.
    2.11 +
    2.12 +
    2.13 +# Environment
    2.14 +MKDIR=mkdir
    2.15 +CP=cp
    2.16 +GREP=grep
    2.17 +NM=nm
    2.18 +CCADMIN=CCadmin
    2.19 +RANLIB=ranlib
    2.20 +CC=gcc
    2.21 +CCC=gcc-4.6
    2.22 +CXX=gcc-4.6
    2.23 +FC=gfortran
    2.24 +AS=as
    2.25 +
    2.26 +# Macros
    2.27 +CND_PLATFORM=GNU-Linux-x86
    2.28 +CND_CONF=Debug
    2.29 +CND_DISTDIR=dist
    2.30 +CND_BUILDDIR=build
    2.31 +
    2.32 +# Include project Makefile
    2.33 +include Makefile
    2.34 +
    2.35 +# Object Directory
    2.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
    2.37 +
    2.38 +# Object Files
    2.39 +OBJECTFILES= \
    2.40 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o \
    2.41 +	${OBJECTDIR}/_ext/1472/PrivateHash.o \
    2.42 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o
    2.43 +
    2.44 +
    2.45 +# C Compiler Flags
    2.46 +CFLAGS=
    2.47 +
    2.48 +# CC Compiler Flags
    2.49 +CCFLAGS=
    2.50 +CXXFLAGS=
    2.51 +
    2.52 +# Fortran Compiler Flags
    2.53 +FFLAGS=
    2.54 +
    2.55 +# Assembler Flags
    2.56 +ASFLAGS=
    2.57 +
    2.58 +# Link Libraries and Options
    2.59 +LDLIBSOPTIONS=
    2.60 +
    2.61 +# Build Targets
    2.62 +.build-conf: ${BUILD_SUBPROJECTS}
    2.63 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    2.64 +
    2.65 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a: ${OBJECTFILES}
    2.66 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
    2.67 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    2.68 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a ${OBJECTFILES} 
    2.69 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    2.70 +
    2.71 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o: ../jenkinsHash_lookup3.c 
    2.72 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    2.73 +	${RM} $@.d
    2.74 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o ../jenkinsHash_lookup3.c
    2.75 +
    2.76 +${OBJECTDIR}/_ext/1472/PrivateHash.o: ../PrivateHash.c 
    2.77 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    2.78 +	${RM} $@.d
    2.79 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/PrivateHash.o ../PrivateHash.c
    2.80 +
    2.81 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o: ../jenkinsHash_lookup8.c 
    2.82 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    2.83 +	${RM} $@.d
    2.84 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o ../jenkinsHash_lookup8.c
    2.85 +
    2.86 +# Subprojects
    2.87 +.build-subprojects:
    2.88 +
    2.89 +# Clean Targets
    2.90 +.clean-conf: ${CLEAN_SUBPROJECTS}
    2.91 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
    2.92 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    2.93 +
    2.94 +# Subprojects
    2.95 +.clean-subprojects:
    2.96 +
    2.97 +# Enable dependency checking
    2.98 +.dep.inc: .depcheck-impl
    2.99 +
   2.100 +include .dep.inc
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/nb__prhash/nbproject/Makefile-Release.mk	Fri Feb 14 07:19:19 2014 -0800
     3.3 @@ -0,0 +1,97 @@
     3.4 +#
     3.5 +# Generated Makefile - do not edit!
     3.6 +#
     3.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
     3.8 +# has a -pre and a -post target defined where you can add customized code.
     3.9 +#
    3.10 +# This makefile implements configuration specific macros and targets.
    3.11 +
    3.12 +
    3.13 +# Environment
    3.14 +MKDIR=mkdir
    3.15 +CP=cp
    3.16 +GREP=grep
    3.17 +NM=nm
    3.18 +CCADMIN=CCadmin
    3.19 +RANLIB=ranlib
    3.20 +CC=gcc
    3.21 +CCC=gcc-4.6
    3.22 +CXX=gcc-4.6
    3.23 +FC=gfortran
    3.24 +AS=as
    3.25 +
    3.26 +# Macros
    3.27 +CND_PLATFORM=GNU-Linux-x86
    3.28 +CND_CONF=Release
    3.29 +CND_DISTDIR=dist
    3.30 +CND_BUILDDIR=build
    3.31 +
    3.32 +# Include project Makefile
    3.33 +include Makefile
    3.34 +
    3.35 +# Object Directory
    3.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
    3.37 +
    3.38 +# Object Files
    3.39 +OBJECTFILES= \
    3.40 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o \
    3.41 +	${OBJECTDIR}/_ext/1472/PrivateHash.o \
    3.42 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o
    3.43 +
    3.44 +
    3.45 +# C Compiler Flags
    3.46 +CFLAGS=
    3.47 +
    3.48 +# CC Compiler Flags
    3.49 +CCFLAGS=
    3.50 +CXXFLAGS=
    3.51 +
    3.52 +# Fortran Compiler Flags
    3.53 +FFLAGS=
    3.54 +
    3.55 +# Assembler Flags
    3.56 +ASFLAGS=
    3.57 +
    3.58 +# Link Libraries and Options
    3.59 +LDLIBSOPTIONS=
    3.60 +
    3.61 +# Build Targets
    3.62 +.build-conf: ${BUILD_SUBPROJECTS}
    3.63 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    3.64 +
    3.65 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a: ${OBJECTFILES}
    3.66 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
    3.67 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    3.68 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a ${OBJECTFILES} 
    3.69 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    3.70 +
    3.71 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o: ../jenkinsHash_lookup3.c 
    3.72 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    3.73 +	${RM} $@.d
    3.74 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o ../jenkinsHash_lookup3.c
    3.75 +
    3.76 +${OBJECTDIR}/_ext/1472/PrivateHash.o: ../PrivateHash.c 
    3.77 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    3.78 +	${RM} $@.d
    3.79 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/PrivateHash.o ../PrivateHash.c
    3.80 +
    3.81 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o: ../jenkinsHash_lookup8.c 
    3.82 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    3.83 +	${RM} $@.d
    3.84 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o ../jenkinsHash_lookup8.c
    3.85 +
    3.86 +# Subprojects
    3.87 +.build-subprojects:
    3.88 +
    3.89 +# Clean Targets
    3.90 +.clean-conf: ${CLEAN_SUBPROJECTS}
    3.91 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
    3.92 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    3.93 +
    3.94 +# Subprojects
    3.95 +.clean-subprojects:
    3.96 +
    3.97 +# Enable dependency checking
    3.98 +.dep.inc: .depcheck-impl
    3.99 +
   3.100 +include .dep.inc
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/nb__prhash/nbproject/Makefile-impl.mk	Fri Feb 14 07:19:19 2014 -0800
     4.3 @@ -0,0 +1,133 @@
     4.4 +# 
     4.5 +# Generated Makefile - do not edit! 
     4.6 +# 
     4.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
     4.8 +# has a pre- and a post- target defined where you can add customization code.
     4.9 +#
    4.10 +# This makefile implements macros and targets common to all configurations.
    4.11 +#
    4.12 +# NOCDDL
    4.13 +
    4.14 +
    4.15 +# Building and Cleaning subprojects are done by default, but can be controlled with the SUB
    4.16 +# macro. If SUB=no, subprojects will not be built or cleaned. The following macro
    4.17 +# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf
    4.18 +# and .clean-reqprojects-conf unless SUB has the value 'no'
    4.19 +SUB_no=NO
    4.20 +SUBPROJECTS=${SUB_${SUB}}
    4.21 +BUILD_SUBPROJECTS_=.build-subprojects
    4.22 +BUILD_SUBPROJECTS_NO=
    4.23 +BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}
    4.24 +CLEAN_SUBPROJECTS_=.clean-subprojects
    4.25 +CLEAN_SUBPROJECTS_NO=
    4.26 +CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}
    4.27 +
    4.28 +
    4.29 +# Project Name
    4.30 +PROJECTNAME=prhash
    4.31 +
    4.32 +# Active Configuration
    4.33 +DEFAULTCONF=Debug
    4.34 +CONF=${DEFAULTCONF}
    4.35 +
    4.36 +# All Configurations
    4.37 +ALLCONFS=Debug Release 
    4.38 +
    4.39 +
    4.40 +# build
    4.41 +.build-impl: .build-pre .validate-impl .depcheck-impl
    4.42 +	@#echo "=> Running $@... Configuration=$(CONF)"
    4.43 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf
    4.44 +
    4.45 +
    4.46 +# clean
    4.47 +.clean-impl: .clean-pre .validate-impl .depcheck-impl
    4.48 +	@#echo "=> Running $@... Configuration=$(CONF)"
    4.49 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf
    4.50 +
    4.51 +
    4.52 +# clobber 
    4.53 +.clobber-impl: .clobber-pre .depcheck-impl
    4.54 +	@#echo "=> Running $@..."
    4.55 +	for CONF in ${ALLCONFS}; \
    4.56 +	do \
    4.57 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf; \
    4.58 +	done
    4.59 +
    4.60 +# all 
    4.61 +.all-impl: .all-pre .depcheck-impl
    4.62 +	@#echo "=> Running $@..."
    4.63 +	for CONF in ${ALLCONFS}; \
    4.64 +	do \
    4.65 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf; \
    4.66 +	done
    4.67 +
    4.68 +# build tests
    4.69 +.build-tests-impl: .build-impl .build-tests-pre
    4.70 +	@#echo "=> Running $@... Configuration=$(CONF)"
    4.71 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-tests-conf
    4.72 +
    4.73 +# run tests
    4.74 +.test-impl: .build-tests-impl .test-pre
    4.75 +	@#echo "=> Running $@... Configuration=$(CONF)"
    4.76 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .test-conf
    4.77 +
    4.78 +# dependency checking support
    4.79 +.depcheck-impl:
    4.80 +	@echo "# This code depends on make tool being used" >.dep.inc
    4.81 +	@if [ -n "${MAKE_VERSION}" ]; then \
    4.82 +	    echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES}))" >>.dep.inc; \
    4.83 +	    echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \
    4.84 +	    echo "include \$${DEPFILES}" >>.dep.inc; \
    4.85 +	    echo "endif" >>.dep.inc; \
    4.86 +	else \
    4.87 +	    echo ".KEEP_STATE:" >>.dep.inc; \
    4.88 +	    echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \
    4.89 +	fi
    4.90 +
    4.91 +# configuration validation
    4.92 +.validate-impl:
    4.93 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
    4.94 +	then \
    4.95 +	    echo ""; \
    4.96 +	    echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \
    4.97 +	    echo "See 'make help' for details."; \
    4.98 +	    echo "Current directory: " `pwd`; \
    4.99 +	    echo ""; \
   4.100 +	fi
   4.101 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
   4.102 +	then \
   4.103 +	    exit 1; \
   4.104 +	fi
   4.105 +
   4.106 +
   4.107 +# help
   4.108 +.help-impl: .help-pre
   4.109 +	@echo "This makefile supports the following configurations:"
   4.110 +	@echo "    ${ALLCONFS}"
   4.111 +	@echo ""
   4.112 +	@echo "and the following targets:"
   4.113 +	@echo "    build  (default target)"
   4.114 +	@echo "    clean"
   4.115 +	@echo "    clobber"
   4.116 +	@echo "    all"
   4.117 +	@echo "    help"
   4.118 +	@echo ""
   4.119 +	@echo "Makefile Usage:"
   4.120 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] build"
   4.121 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] clean"
   4.122 +	@echo "    make [SUB=no] clobber"
   4.123 +	@echo "    make [SUB=no] all"
   4.124 +	@echo "    make help"
   4.125 +	@echo ""
   4.126 +	@echo "Target 'build' will build a specific configuration and, unless 'SUB=no',"
   4.127 +	@echo "    also build subprojects."
   4.128 +	@echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no',"
   4.129 +	@echo "    also clean subprojects."
   4.130 +	@echo "Target 'clobber' will remove all built files from all configurations and,"
   4.131 +	@echo "    unless 'SUB=no', also from subprojects."
   4.132 +	@echo "Target 'all' will will build all configurations and, unless 'SUB=no',"
   4.133 +	@echo "    also build subprojects."
   4.134 +	@echo "Target 'help' prints this message."
   4.135 +	@echo ""
   4.136 +
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/nb__prhash/nbproject/Makefile-variables.mk	Fri Feb 14 07:19:19 2014 -0800
     5.3 @@ -0,0 +1,35 @@
     5.4 +#
     5.5 +# Generated - do not edit!
     5.6 +#
     5.7 +# NOCDDL
     5.8 +#
     5.9 +CND_BASEDIR=`pwd`
    5.10 +CND_BUILDDIR=build
    5.11 +CND_DISTDIR=dist
    5.12 +# Debug configuration
    5.13 +CND_PLATFORM_Debug=GNU-Linux-x86
    5.14 +CND_ARTIFACT_DIR_Debug=dist/Debug/GNU-Linux-x86
    5.15 +CND_ARTIFACT_NAME_Debug=libprhash.a
    5.16 +CND_ARTIFACT_PATH_Debug=dist/Debug/GNU-Linux-x86/libprhash.a
    5.17 +CND_PACKAGE_DIR_Debug=dist/Debug/GNU-Linux-x86/package
    5.18 +CND_PACKAGE_NAME_Debug=prhash.tar
    5.19 +CND_PACKAGE_PATH_Debug=dist/Debug/GNU-Linux-x86/package/prhash.tar
    5.20 +# Release configuration
    5.21 +CND_PLATFORM_Release=GNU-Linux-x86
    5.22 +CND_ARTIFACT_DIR_Release=dist/Release/GNU-Linux-x86
    5.23 +CND_ARTIFACT_NAME_Release=libprhash.a
    5.24 +CND_ARTIFACT_PATH_Release=dist/Release/GNU-Linux-x86/libprhash.a
    5.25 +CND_PACKAGE_DIR_Release=dist/Release/GNU-Linux-x86/package
    5.26 +CND_PACKAGE_NAME_Release=prhash.tar
    5.27 +CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux-x86/package/prhash.tar
    5.28 +#
    5.29 +# include compiler specific variables
    5.30 +#
    5.31 +# dmake command
    5.32 +ROOT:sh = test -f nbproject/private/Makefile-variables.mk || \
    5.33 +	(mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk)
    5.34 +#
    5.35 +# gmake command
    5.36 +.PHONY: $(shell test -f nbproject/private/Makefile-variables.mk || (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk))
    5.37 +#
    5.38 +include nbproject/private/Makefile-variables.mk
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/nb__prhash/nbproject/Package-Debug.bash	Fri Feb 14 07:19:19 2014 -0800
     6.3 @@ -0,0 +1,75 @@
     6.4 +#!/bin/bash -x
     6.5 +
     6.6 +#
     6.7 +# Generated - do not edit!
     6.8 +#
     6.9 +
    6.10 +# Macros
    6.11 +TOP=`pwd`
    6.12 +CND_PLATFORM=GNU-Linux-x86
    6.13 +CND_CONF=Debug
    6.14 +CND_DISTDIR=dist
    6.15 +CND_BUILDDIR=build
    6.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
    6.17 +TMPDIRNAME=tmp-packaging
    6.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    6.19 +OUTPUT_BASENAME=libprhash.a
    6.20 +PACKAGE_TOP_DIR=prhash/
    6.21 +
    6.22 +# Functions
    6.23 +function checkReturnCode
    6.24 +{
    6.25 +    rc=$?
    6.26 +    if [ $rc != 0 ]
    6.27 +    then
    6.28 +        exit $rc
    6.29 +    fi
    6.30 +}
    6.31 +function makeDirectory
    6.32 +# $1 directory path
    6.33 +# $2 permission (optional)
    6.34 +{
    6.35 +    mkdir -p "$1"
    6.36 +    checkReturnCode
    6.37 +    if [ "$2" != "" ]
    6.38 +    then
    6.39 +      chmod $2 "$1"
    6.40 +      checkReturnCode
    6.41 +    fi
    6.42 +}
    6.43 +function copyFileToTmpDir
    6.44 +# $1 from-file path
    6.45 +# $2 to-file path
    6.46 +# $3 permission
    6.47 +{
    6.48 +    cp "$1" "$2"
    6.49 +    checkReturnCode
    6.50 +    if [ "$3" != "" ]
    6.51 +    then
    6.52 +        chmod $3 "$2"
    6.53 +        checkReturnCode
    6.54 +    fi
    6.55 +}
    6.56 +
    6.57 +# Setup
    6.58 +cd "${TOP}"
    6.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
    6.60 +rm -rf ${NBTMPDIR}
    6.61 +mkdir -p ${NBTMPDIR}
    6.62 +
    6.63 +# Copy files and create directories and links
    6.64 +cd "${TOP}"
    6.65 +makeDirectory "${NBTMPDIR}/prhash/lib"
    6.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
    6.67 +
    6.68 +
    6.69 +# Generate tar file
    6.70 +cd "${TOP}"
    6.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhash.tar
    6.72 +cd ${NBTMPDIR}
    6.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhash.tar *
    6.74 +checkReturnCode
    6.75 +
    6.76 +# Cleanup
    6.77 +cd "${TOP}"
    6.78 +rm -rf ${NBTMPDIR}
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/nb__prhash/nbproject/Package-Release.bash	Fri Feb 14 07:19:19 2014 -0800
     7.3 @@ -0,0 +1,75 @@
     7.4 +#!/bin/bash -x
     7.5 +
     7.6 +#
     7.7 +# Generated - do not edit!
     7.8 +#
     7.9 +
    7.10 +# Macros
    7.11 +TOP=`pwd`
    7.12 +CND_PLATFORM=GNU-Linux-x86
    7.13 +CND_CONF=Release
    7.14 +CND_DISTDIR=dist
    7.15 +CND_BUILDDIR=build
    7.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
    7.17 +TMPDIRNAME=tmp-packaging
    7.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash.a
    7.19 +OUTPUT_BASENAME=libprhash.a
    7.20 +PACKAGE_TOP_DIR=prhash/
    7.21 +
    7.22 +# Functions
    7.23 +function checkReturnCode
    7.24 +{
    7.25 +    rc=$?
    7.26 +    if [ $rc != 0 ]
    7.27 +    then
    7.28 +        exit $rc
    7.29 +    fi
    7.30 +}
    7.31 +function makeDirectory
    7.32 +# $1 directory path
    7.33 +# $2 permission (optional)
    7.34 +{
    7.35 +    mkdir -p "$1"
    7.36 +    checkReturnCode
    7.37 +    if [ "$2" != "" ]
    7.38 +    then
    7.39 +      chmod $2 "$1"
    7.40 +      checkReturnCode
    7.41 +    fi
    7.42 +}
    7.43 +function copyFileToTmpDir
    7.44 +# $1 from-file path
    7.45 +# $2 to-file path
    7.46 +# $3 permission
    7.47 +{
    7.48 +    cp "$1" "$2"
    7.49 +    checkReturnCode
    7.50 +    if [ "$3" != "" ]
    7.51 +    then
    7.52 +        chmod $3 "$2"
    7.53 +        checkReturnCode
    7.54 +    fi
    7.55 +}
    7.56 +
    7.57 +# Setup
    7.58 +cd "${TOP}"
    7.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
    7.60 +rm -rf ${NBTMPDIR}
    7.61 +mkdir -p ${NBTMPDIR}
    7.62 +
    7.63 +# Copy files and create directories and links
    7.64 +cd "${TOP}"
    7.65 +makeDirectory "${NBTMPDIR}/prhash/lib"
    7.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
    7.67 +
    7.68 +
    7.69 +# Generate tar file
    7.70 +cd "${TOP}"
    7.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhash.tar
    7.72 +cd ${NBTMPDIR}
    7.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhash.tar *
    7.74 +checkReturnCode
    7.75 +
    7.76 +# Cleanup
    7.77 +cd "${TOP}"
    7.78 +rm -rf ${NBTMPDIR}
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/nb__prhash/nbproject/configurations.xml	Fri Feb 14 07:19:19 2014 -0800
     8.3 @@ -0,0 +1,67 @@
     8.4 +<?xml version="1.0" encoding="UTF-8"?>
     8.5 +<configurationDescriptor version="79">
     8.6 +  <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
     8.7 +    <logicalFolder name="HeaderFiles"
     8.8 +                   displayName="Header Files"
     8.9 +                   projectFiles="true">
    8.10 +    </logicalFolder>
    8.11 +    <logicalFolder name="ResourceFiles"
    8.12 +                   displayName="Resource Files"
    8.13 +                   projectFiles="true">
    8.14 +    </logicalFolder>
    8.15 +    <logicalFolder name="SourceFiles"
    8.16 +                   displayName="Source Files"
    8.17 +                   projectFiles="true">
    8.18 +      <itemPath>../PrivateHash.c</itemPath>
    8.19 +      <itemPath>../jenkinsHash_lookup3.c</itemPath>
    8.20 +      <itemPath>../jenkinsHash_lookup8.c</itemPath>
    8.21 +      <itemPath>../prhash.h</itemPath>
    8.22 +    </logicalFolder>
    8.23 +    <logicalFolder name="TestFiles"
    8.24 +                   displayName="Test Files"
    8.25 +                   projectFiles="false"
    8.26 +                   kind="TEST_LOGICAL_FOLDER">
    8.27 +    </logicalFolder>
    8.28 +    <logicalFolder name="ExternalFiles"
    8.29 +                   displayName="Important Files"
    8.30 +                   projectFiles="false"
    8.31 +                   kind="IMPORTANT_FILES_FOLDER">
    8.32 +      <itemPath>Makefile</itemPath>
    8.33 +    </logicalFolder>
    8.34 +  </logicalFolder>
    8.35 +  <projectmakefile>Makefile</projectmakefile>
    8.36 +  <confs>
    8.37 +    <conf name="Debug" type="3">
    8.38 +      <toolsSet>
    8.39 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
    8.40 +        <compilerSet>default</compilerSet>
    8.41 +      </toolsSet>
    8.42 +      <compileType>
    8.43 +        <archiverTool>
    8.44 +        </archiverTool>
    8.45 +      </compileType>
    8.46 +    </conf>
    8.47 +    <conf name="Release" type="3">
    8.48 +      <toolsSet>
    8.49 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
    8.50 +        <compilerSet>default</compilerSet>
    8.51 +      </toolsSet>
    8.52 +      <compileType>
    8.53 +        <cTool>
    8.54 +          <developmentMode>5</developmentMode>
    8.55 +        </cTool>
    8.56 +        <ccTool>
    8.57 +          <developmentMode>5</developmentMode>
    8.58 +        </ccTool>
    8.59 +        <fortranCompilerTool>
    8.60 +          <developmentMode>5</developmentMode>
    8.61 +        </fortranCompilerTool>
    8.62 +        <asmTool>
    8.63 +          <developmentMode>5</developmentMode>
    8.64 +        </asmTool>
    8.65 +        <archiverTool>
    8.66 +        </archiverTool>
    8.67 +      </compileType>
    8.68 +    </conf>
    8.69 +  </confs>
    8.70 +</configurationDescriptor>
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/nb__prhash/nbproject/private/Makefile-variables.mk	Fri Feb 14 07:19:19 2014 -0800
     9.3 @@ -0,0 +1,7 @@
     9.4 +#
     9.5 +# Generated - do not edit!
     9.6 +#
     9.7 +# NOCDDL
     9.8 +#
     9.9 +# Debug configuration
    9.10 +# Release configuration
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/nb__prhash/nbproject/private/configurations.xml	Fri Feb 14 07:19:19 2014 -0800
    10.3 @@ -0,0 +1,78 @@
    10.4 +<?xml version="1.0" encoding="UTF-8"?>
    10.5 +<configurationDescriptor version="79">
    10.6 +  <projectmakefile>Makefile</projectmakefile>
    10.7 +  <confs>
    10.8 +    <conf name="Debug" type="3">
    10.9 +      <toolsSet>
   10.10 +        <developmentServer>localhost</developmentServer>
   10.11 +        <platform>2</platform>
   10.12 +      </toolsSet>
   10.13 +      <dbx_gdbdebugger version="1">
   10.14 +        <gdb_pathmaps>
   10.15 +        </gdb_pathmaps>
   10.16 +        <gdb_interceptlist>
   10.17 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   10.18 +        </gdb_interceptlist>
   10.19 +        <gdb_options>
   10.20 +          <DebugOptions>
   10.21 +          </DebugOptions>
   10.22 +        </gdb_options>
   10.23 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   10.24 +      </dbx_gdbdebugger>
   10.25 +      <gizmo_options version="3">
   10.26 +        <configurationname>GizmoSimple</configurationname>
   10.27 +      </gizmo_options>
   10.28 +      <nativedebugger version="1">
   10.29 +        <engine>gdb</engine>
   10.30 +      </nativedebugger>
   10.31 +      <runprofile version="9">
   10.32 +        <runcommandpicklist>
   10.33 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   10.34 +        </runcommandpicklist>
   10.35 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   10.36 +        <rundir></rundir>
   10.37 +        <buildfirst>true</buildfirst>
   10.38 +        <terminal-type>0</terminal-type>
   10.39 +        <remove-instrumentation>0</remove-instrumentation>
   10.40 +        <environment>
   10.41 +        </environment>
   10.42 +      </runprofile>
   10.43 +    </conf>
   10.44 +    <conf name="Release" type="3">
   10.45 +      <toolsSet>
   10.46 +        <developmentServer>localhost</developmentServer>
   10.47 +        <platform>2</platform>
   10.48 +      </toolsSet>
   10.49 +      <dbx_gdbdebugger version="1">
   10.50 +        <gdb_pathmaps>
   10.51 +        </gdb_pathmaps>
   10.52 +        <gdb_interceptlist>
   10.53 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   10.54 +        </gdb_interceptlist>
   10.55 +        <gdb_options>
   10.56 +          <DebugOptions>
   10.57 +          </DebugOptions>
   10.58 +        </gdb_options>
   10.59 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   10.60 +      </dbx_gdbdebugger>
   10.61 +      <gizmo_options version="3">
   10.62 +        <configurationname>GizmoSimple</configurationname>
   10.63 +      </gizmo_options>
   10.64 +      <nativedebugger version="1">
   10.65 +        <engine>gdb</engine>
   10.66 +      </nativedebugger>
   10.67 +      <runprofile version="9">
   10.68 +        <runcommandpicklist>
   10.69 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   10.70 +        </runcommandpicklist>
   10.71 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   10.72 +        <rundir></rundir>
   10.73 +        <buildfirst>true</buildfirst>
   10.74 +        <terminal-type>0</terminal-type>
   10.75 +        <remove-instrumentation>0</remove-instrumentation>
   10.76 +        <environment>
   10.77 +        </environment>
   10.78 +      </runprofile>
   10.79 +    </conf>
   10.80 +  </confs>
   10.81 +</configurationDescriptor>
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/nb__prhash/nbproject/private/private.xml	Fri Feb 14 07:19:19 2014 -0800
    11.3 @@ -0,0 +1,8 @@
    11.4 +<?xml version="1.0" encoding="UTF-8"?>
    11.5 +<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
    11.6 +    <data xmlns="http://www.netbeans.org/ns/make-project-private/1">
    11.7 +        <activeConfTypeElem>3</activeConfTypeElem>
    11.8 +        <activeConfIndexElem>0</activeConfIndexElem>
    11.9 +    </data>
   11.10 +    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/>
   11.11 +</project-private>
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/nb__prhash/nbproject/project.xml	Fri Feb 14 07:19:19 2014 -0800
    12.3 @@ -0,0 +1,25 @@
    12.4 +<?xml version="1.0" encoding="UTF-8"?>
    12.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
    12.6 +    <type>org.netbeans.modules.cnd.makeproject</type>
    12.7 +    <configuration>
    12.8 +        <data xmlns="http://www.netbeans.org/ns/make-project/1">
    12.9 +            <name>prhash</name>
   12.10 +            <c-extensions>c</c-extensions>
   12.11 +            <cpp-extensions/>
   12.12 +            <header-extensions>h</header-extensions>
   12.13 +            <sourceEncoding>UTF-8</sourceEncoding>
   12.14 +            <make-dep-projects/>
   12.15 +            <sourceRootList/>
   12.16 +            <confList>
   12.17 +                <confElem>
   12.18 +                    <name>Debug</name>
   12.19 +                    <type>3</type>
   12.20 +                </confElem>
   12.21 +                <confElem>
   12.22 +                    <name>Release</name>
   12.23 +                    <type>3</type>
   12.24 +                </confElem>
   12.25 +            </confList>
   12.26 +        </data>
   12.27 +    </configuration>
   12.28 +</project>
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/nb__prhash_pic/Makefile	Fri Feb 14 07:19:19 2014 -0800
    13.3 @@ -0,0 +1,128 @@
    13.4 +#
    13.5 +#  There exist several targets which are by default empty and which can be 
    13.6 +#  used for execution of your targets. These targets are usually executed 
    13.7 +#  before and after some main targets. They are: 
    13.8 +#
    13.9 +#     .build-pre:              called before 'build' target
   13.10 +#     .build-post:             called after 'build' target
   13.11 +#     .clean-pre:              called before 'clean' target
   13.12 +#     .clean-post:             called after 'clean' target
   13.13 +#     .clobber-pre:            called before 'clobber' target
   13.14 +#     .clobber-post:           called after 'clobber' target
   13.15 +#     .all-pre:                called before 'all' target
   13.16 +#     .all-post:               called after 'all' target
   13.17 +#     .help-pre:               called before 'help' target
   13.18 +#     .help-post:              called after 'help' target
   13.19 +#
   13.20 +#  Targets beginning with '.' are not intended to be called on their own.
   13.21 +#
   13.22 +#  Main targets can be executed directly, and they are:
   13.23 +#  
   13.24 +#     build                    build a specific configuration
   13.25 +#     clean                    remove built files from a configuration
   13.26 +#     clobber                  remove all built files
   13.27 +#     all                      build all configurations
   13.28 +#     help                     print help mesage
   13.29 +#  
   13.30 +#  Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
   13.31 +#  .help-impl are implemented in nbproject/makefile-impl.mk.
   13.32 +#
   13.33 +#  Available make variables:
   13.34 +#
   13.35 +#     CND_BASEDIR                base directory for relative paths
   13.36 +#     CND_DISTDIR                default top distribution directory (build artifacts)
   13.37 +#     CND_BUILDDIR               default top build directory (object files, ...)
   13.38 +#     CONF                       name of current configuration
   13.39 +#     CND_PLATFORM_${CONF}       platform name (current configuration)
   13.40 +#     CND_ARTIFACT_DIR_${CONF}   directory of build artifact (current configuration)
   13.41 +#     CND_ARTIFACT_NAME_${CONF}  name of build artifact (current configuration)
   13.42 +#     CND_ARTIFACT_PATH_${CONF}  path to build artifact (current configuration)
   13.43 +#     CND_PACKAGE_DIR_${CONF}    directory of package (current configuration)
   13.44 +#     CND_PACKAGE_NAME_${CONF}   name of package (current configuration)
   13.45 +#     CND_PACKAGE_PATH_${CONF}   path to package (current configuration)
   13.46 +#
   13.47 +# NOCDDL
   13.48 +
   13.49 +
   13.50 +# Environment 
   13.51 +MKDIR=mkdir
   13.52 +CP=cp
   13.53 +CCADMIN=CCadmin
   13.54 +
   13.55 +
   13.56 +# build
   13.57 +build: .build-post
   13.58 +
   13.59 +.build-pre:
   13.60 +# Add your pre 'build' code here...
   13.61 +
   13.62 +.build-post: .build-impl
   13.63 +# Add your post 'build' code here...
   13.64 +
   13.65 +
   13.66 +# clean
   13.67 +clean: .clean-post
   13.68 +
   13.69 +.clean-pre:
   13.70 +# Add your pre 'clean' code here...
   13.71 +
   13.72 +.clean-post: .clean-impl
   13.73 +# Add your post 'clean' code here...
   13.74 +
   13.75 +
   13.76 +# clobber
   13.77 +clobber: .clobber-post
   13.78 +
   13.79 +.clobber-pre:
   13.80 +# Add your pre 'clobber' code here...
   13.81 +
   13.82 +.clobber-post: .clobber-impl
   13.83 +# Add your post 'clobber' code here...
   13.84 +
   13.85 +
   13.86 +# all
   13.87 +all: .all-post
   13.88 +
   13.89 +.all-pre:
   13.90 +# Add your pre 'all' code here...
   13.91 +
   13.92 +.all-post: .all-impl
   13.93 +# Add your post 'all' code here...
   13.94 +
   13.95 +
   13.96 +# build tests
   13.97 +build-tests: .build-tests-post
   13.98 +
   13.99 +.build-tests-pre:
  13.100 +# Add your pre 'build-tests' code here...
  13.101 +
  13.102 +.build-tests-post: .build-tests-impl
  13.103 +# Add your post 'build-tests' code here...
  13.104 +
  13.105 +
  13.106 +# run tests
  13.107 +test: .test-post
  13.108 +
  13.109 +.test-pre:
  13.110 +# Add your pre 'test' code here...
  13.111 +
  13.112 +.test-post: .test-impl
  13.113 +# Add your post 'test' code here...
  13.114 +
  13.115 +
  13.116 +# help
  13.117 +help: .help-post
  13.118 +
  13.119 +.help-pre:
  13.120 +# Add your pre 'help' code here...
  13.121 +
  13.122 +.help-post: .help-impl
  13.123 +# Add your post 'help' code here...
  13.124 +
  13.125 +
  13.126 +
  13.127 +# include project implementation makefile
  13.128 +include nbproject/Makefile-impl.mk
  13.129 +
  13.130 +# include project make variables
  13.131 +include nbproject/Makefile-variables.mk
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/nb__prhash_pic/nbproject/Makefile-Debug.mk	Fri Feb 14 07:19:19 2014 -0800
    14.3 @@ -0,0 +1,97 @@
    14.4 +#
    14.5 +# Generated Makefile - do not edit!
    14.6 +#
    14.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    14.8 +# has a -pre and a -post target defined where you can add customized code.
    14.9 +#
   14.10 +# This makefile implements configuration specific macros and targets.
   14.11 +
   14.12 +
   14.13 +# Environment
   14.14 +MKDIR=mkdir
   14.15 +CP=cp
   14.16 +GREP=grep
   14.17 +NM=nm
   14.18 +CCADMIN=CCadmin
   14.19 +RANLIB=ranlib
   14.20 +CC=gcc
   14.21 +CCC=gcc-4.6
   14.22 +CXX=gcc-4.6
   14.23 +FC=gfortran
   14.24 +AS=as
   14.25 +
   14.26 +# Macros
   14.27 +CND_PLATFORM=GNU-Linux-x86
   14.28 +CND_CONF=Debug
   14.29 +CND_DISTDIR=dist
   14.30 +CND_BUILDDIR=build
   14.31 +
   14.32 +# Include project Makefile
   14.33 +include Makefile
   14.34 +
   14.35 +# Object Directory
   14.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
   14.37 +
   14.38 +# Object Files
   14.39 +OBJECTFILES= \
   14.40 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o \
   14.41 +	${OBJECTDIR}/_ext/1472/PrivateHash.o \
   14.42 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o
   14.43 +
   14.44 +
   14.45 +# C Compiler Flags
   14.46 +CFLAGS=-fPIC
   14.47 +
   14.48 +# CC Compiler Flags
   14.49 +CCFLAGS=
   14.50 +CXXFLAGS=
   14.51 +
   14.52 +# Fortran Compiler Flags
   14.53 +FFLAGS=
   14.54 +
   14.55 +# Assembler Flags
   14.56 +ASFLAGS=
   14.57 +
   14.58 +# Link Libraries and Options
   14.59 +LDLIBSOPTIONS=
   14.60 +
   14.61 +# Build Targets
   14.62 +.build-conf: ${BUILD_SUBPROJECTS}
   14.63 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   14.64 +
   14.65 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a: ${OBJECTFILES}
   14.66 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
   14.67 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   14.68 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a ${OBJECTFILES} 
   14.69 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   14.70 +
   14.71 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o: ../jenkinsHash_lookup3.c 
   14.72 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   14.73 +	${RM} $@.d
   14.74 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o ../jenkinsHash_lookup3.c
   14.75 +
   14.76 +${OBJECTDIR}/_ext/1472/PrivateHash.o: ../PrivateHash.c 
   14.77 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   14.78 +	${RM} $@.d
   14.79 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/PrivateHash.o ../PrivateHash.c
   14.80 +
   14.81 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o: ../jenkinsHash_lookup8.c 
   14.82 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   14.83 +	${RM} $@.d
   14.84 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o ../jenkinsHash_lookup8.c
   14.85 +
   14.86 +# Subprojects
   14.87 +.build-subprojects:
   14.88 +
   14.89 +# Clean Targets
   14.90 +.clean-conf: ${CLEAN_SUBPROJECTS}
   14.91 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
   14.92 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   14.93 +
   14.94 +# Subprojects
   14.95 +.clean-subprojects:
   14.96 +
   14.97 +# Enable dependency checking
   14.98 +.dep.inc: .depcheck-impl
   14.99 +
  14.100 +include .dep.inc
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/nb__prhash_pic/nbproject/Makefile-Release.mk	Fri Feb 14 07:19:19 2014 -0800
    15.3 @@ -0,0 +1,97 @@
    15.4 +#
    15.5 +# Generated Makefile - do not edit!
    15.6 +#
    15.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    15.8 +# has a -pre and a -post target defined where you can add customized code.
    15.9 +#
   15.10 +# This makefile implements configuration specific macros and targets.
   15.11 +
   15.12 +
   15.13 +# Environment
   15.14 +MKDIR=mkdir
   15.15 +CP=cp
   15.16 +GREP=grep
   15.17 +NM=nm
   15.18 +CCADMIN=CCadmin
   15.19 +RANLIB=ranlib
   15.20 +CC=gcc
   15.21 +CCC=gcc-4.6
   15.22 +CXX=gcc-4.6
   15.23 +FC=gfortran
   15.24 +AS=as
   15.25 +
   15.26 +# Macros
   15.27 +CND_PLATFORM=GNU-Linux-x86
   15.28 +CND_CONF=Release
   15.29 +CND_DISTDIR=dist
   15.30 +CND_BUILDDIR=build
   15.31 +
   15.32 +# Include project Makefile
   15.33 +include Makefile
   15.34 +
   15.35 +# Object Directory
   15.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
   15.37 +
   15.38 +# Object Files
   15.39 +OBJECTFILES= \
   15.40 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o \
   15.41 +	${OBJECTDIR}/_ext/1472/PrivateHash.o \
   15.42 +	${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o
   15.43 +
   15.44 +
   15.45 +# C Compiler Flags
   15.46 +CFLAGS=
   15.47 +
   15.48 +# CC Compiler Flags
   15.49 +CCFLAGS=
   15.50 +CXXFLAGS=
   15.51 +
   15.52 +# Fortran Compiler Flags
   15.53 +FFLAGS=
   15.54 +
   15.55 +# Assembler Flags
   15.56 +ASFLAGS=
   15.57 +
   15.58 +# Link Libraries and Options
   15.59 +LDLIBSOPTIONS=
   15.60 +
   15.61 +# Build Targets
   15.62 +.build-conf: ${BUILD_SUBPROJECTS}
   15.63 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   15.64 +
   15.65 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a: ${OBJECTFILES}
   15.66 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
   15.67 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   15.68 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a ${OBJECTFILES} 
   15.69 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   15.70 +
   15.71 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o: ../jenkinsHash_lookup3.c 
   15.72 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   15.73 +	${RM} $@.d
   15.74 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup3.o ../jenkinsHash_lookup3.c
   15.75 +
   15.76 +${OBJECTDIR}/_ext/1472/PrivateHash.o: ../PrivateHash.c 
   15.77 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   15.78 +	${RM} $@.d
   15.79 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/PrivateHash.o ../PrivateHash.c
   15.80 +
   15.81 +${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o: ../jenkinsHash_lookup8.c 
   15.82 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   15.83 +	${RM} $@.d
   15.84 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/jenkinsHash_lookup8.o ../jenkinsHash_lookup8.c
   15.85 +
   15.86 +# Subprojects
   15.87 +.build-subprojects:
   15.88 +
   15.89 +# Clean Targets
   15.90 +.clean-conf: ${CLEAN_SUBPROJECTS}
   15.91 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
   15.92 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   15.93 +
   15.94 +# Subprojects
   15.95 +.clean-subprojects:
   15.96 +
   15.97 +# Enable dependency checking
   15.98 +.dep.inc: .depcheck-impl
   15.99 +
  15.100 +include .dep.inc
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/nb__prhash_pic/nbproject/Makefile-impl.mk	Fri Feb 14 07:19:19 2014 -0800
    16.3 @@ -0,0 +1,133 @@
    16.4 +# 
    16.5 +# Generated Makefile - do not edit! 
    16.6 +# 
    16.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    16.8 +# has a pre- and a post- target defined where you can add customization code.
    16.9 +#
   16.10 +# This makefile implements macros and targets common to all configurations.
   16.11 +#
   16.12 +# NOCDDL
   16.13 +
   16.14 +
   16.15 +# Building and Cleaning subprojects are done by default, but can be controlled with the SUB
   16.16 +# macro. If SUB=no, subprojects will not be built or cleaned. The following macro
   16.17 +# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf
   16.18 +# and .clean-reqprojects-conf unless SUB has the value 'no'
   16.19 +SUB_no=NO
   16.20 +SUBPROJECTS=${SUB_${SUB}}
   16.21 +BUILD_SUBPROJECTS_=.build-subprojects
   16.22 +BUILD_SUBPROJECTS_NO=
   16.23 +BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}
   16.24 +CLEAN_SUBPROJECTS_=.clean-subprojects
   16.25 +CLEAN_SUBPROJECTS_NO=
   16.26 +CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}
   16.27 +
   16.28 +
   16.29 +# Project Name
   16.30 +PROJECTNAME=prhash_pic
   16.31 +
   16.32 +# Active Configuration
   16.33 +DEFAULTCONF=Debug
   16.34 +CONF=${DEFAULTCONF}
   16.35 +
   16.36 +# All Configurations
   16.37 +ALLCONFS=Debug Release 
   16.38 +
   16.39 +
   16.40 +# build
   16.41 +.build-impl: .build-pre .validate-impl .depcheck-impl
   16.42 +	@#echo "=> Running $@... Configuration=$(CONF)"
   16.43 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf
   16.44 +
   16.45 +
   16.46 +# clean
   16.47 +.clean-impl: .clean-pre .validate-impl .depcheck-impl
   16.48 +	@#echo "=> Running $@... Configuration=$(CONF)"
   16.49 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf
   16.50 +
   16.51 +
   16.52 +# clobber 
   16.53 +.clobber-impl: .clobber-pre .depcheck-impl
   16.54 +	@#echo "=> Running $@..."
   16.55 +	for CONF in ${ALLCONFS}; \
   16.56 +	do \
   16.57 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf; \
   16.58 +	done
   16.59 +
   16.60 +# all 
   16.61 +.all-impl: .all-pre .depcheck-impl
   16.62 +	@#echo "=> Running $@..."
   16.63 +	for CONF in ${ALLCONFS}; \
   16.64 +	do \
   16.65 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf; \
   16.66 +	done
   16.67 +
   16.68 +# build tests
   16.69 +.build-tests-impl: .build-impl .build-tests-pre
   16.70 +	@#echo "=> Running $@... Configuration=$(CONF)"
   16.71 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-tests-conf
   16.72 +
   16.73 +# run tests
   16.74 +.test-impl: .build-tests-impl .test-pre
   16.75 +	@#echo "=> Running $@... Configuration=$(CONF)"
   16.76 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .test-conf
   16.77 +
   16.78 +# dependency checking support
   16.79 +.depcheck-impl:
   16.80 +	@echo "# This code depends on make tool being used" >.dep.inc
   16.81 +	@if [ -n "${MAKE_VERSION}" ]; then \
   16.82 +	    echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES}))" >>.dep.inc; \
   16.83 +	    echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \
   16.84 +	    echo "include \$${DEPFILES}" >>.dep.inc; \
   16.85 +	    echo "endif" >>.dep.inc; \
   16.86 +	else \
   16.87 +	    echo ".KEEP_STATE:" >>.dep.inc; \
   16.88 +	    echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \
   16.89 +	fi
   16.90 +
   16.91 +# configuration validation
   16.92 +.validate-impl:
   16.93 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
   16.94 +	then \
   16.95 +	    echo ""; \
   16.96 +	    echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \
   16.97 +	    echo "See 'make help' for details."; \
   16.98 +	    echo "Current directory: " `pwd`; \
   16.99 +	    echo ""; \
  16.100 +	fi
  16.101 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
  16.102 +	then \
  16.103 +	    exit 1; \
  16.104 +	fi
  16.105 +
  16.106 +
  16.107 +# help
  16.108 +.help-impl: .help-pre
  16.109 +	@echo "This makefile supports the following configurations:"
  16.110 +	@echo "    ${ALLCONFS}"
  16.111 +	@echo ""
  16.112 +	@echo "and the following targets:"
  16.113 +	@echo "    build  (default target)"
  16.114 +	@echo "    clean"
  16.115 +	@echo "    clobber"
  16.116 +	@echo "    all"
  16.117 +	@echo "    help"
  16.118 +	@echo ""
  16.119 +	@echo "Makefile Usage:"
  16.120 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] build"
  16.121 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] clean"
  16.122 +	@echo "    make [SUB=no] clobber"
  16.123 +	@echo "    make [SUB=no] all"
  16.124 +	@echo "    make help"
  16.125 +	@echo ""
  16.126 +	@echo "Target 'build' will build a specific configuration and, unless 'SUB=no',"
  16.127 +	@echo "    also build subprojects."
  16.128 +	@echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no',"
  16.129 +	@echo "    also clean subprojects."
  16.130 +	@echo "Target 'clobber' will remove all built files from all configurations and,"
  16.131 +	@echo "    unless 'SUB=no', also from subprojects."
  16.132 +	@echo "Target 'all' will will build all configurations and, unless 'SUB=no',"
  16.133 +	@echo "    also build subprojects."
  16.134 +	@echo "Target 'help' prints this message."
  16.135 +	@echo ""
  16.136 +
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/nb__prhash_pic/nbproject/Makefile-variables.mk	Fri Feb 14 07:19:19 2014 -0800
    17.3 @@ -0,0 +1,35 @@
    17.4 +#
    17.5 +# Generated - do not edit!
    17.6 +#
    17.7 +# NOCDDL
    17.8 +#
    17.9 +CND_BASEDIR=`pwd`
   17.10 +CND_BUILDDIR=build
   17.11 +CND_DISTDIR=dist
   17.12 +# Debug configuration
   17.13 +CND_PLATFORM_Debug=GNU-Linux-x86
   17.14 +CND_ARTIFACT_DIR_Debug=dist/Debug/GNU-Linux-x86
   17.15 +CND_ARTIFACT_NAME_Debug=libprhash_pic.a
   17.16 +CND_ARTIFACT_PATH_Debug=dist/Debug/GNU-Linux-x86/libprhash_pic.a
   17.17 +CND_PACKAGE_DIR_Debug=dist/Debug/GNU-Linux-x86/package
   17.18 +CND_PACKAGE_NAME_Debug=prhashpic.tar
   17.19 +CND_PACKAGE_PATH_Debug=dist/Debug/GNU-Linux-x86/package/prhashpic.tar
   17.20 +# Release configuration
   17.21 +CND_PLATFORM_Release=GNU-Linux-x86
   17.22 +CND_ARTIFACT_DIR_Release=dist/Release/GNU-Linux-x86
   17.23 +CND_ARTIFACT_NAME_Release=libprhash_pic.a
   17.24 +CND_ARTIFACT_PATH_Release=dist/Release/GNU-Linux-x86/libprhash_pic.a
   17.25 +CND_PACKAGE_DIR_Release=dist/Release/GNU-Linux-x86/package
   17.26 +CND_PACKAGE_NAME_Release=prhashpic.tar
   17.27 +CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux-x86/package/prhashpic.tar
   17.28 +#
   17.29 +# include compiler specific variables
   17.30 +#
   17.31 +# dmake command
   17.32 +ROOT:sh = test -f nbproject/private/Makefile-variables.mk || \
   17.33 +	(mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk)
   17.34 +#
   17.35 +# gmake command
   17.36 +.PHONY: $(shell test -f nbproject/private/Makefile-variables.mk || (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk))
   17.37 +#
   17.38 +include nbproject/private/Makefile-variables.mk
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/nb__prhash_pic/nbproject/Package-Debug.bash	Fri Feb 14 07:19:19 2014 -0800
    18.3 @@ -0,0 +1,75 @@
    18.4 +#!/bin/bash -x
    18.5 +
    18.6 +#
    18.7 +# Generated - do not edit!
    18.8 +#
    18.9 +
   18.10 +# Macros
   18.11 +TOP=`pwd`
   18.12 +CND_PLATFORM=GNU-Linux-x86
   18.13 +CND_CONF=Debug
   18.14 +CND_DISTDIR=dist
   18.15 +CND_BUILDDIR=build
   18.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
   18.17 +TMPDIRNAME=tmp-packaging
   18.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   18.19 +OUTPUT_BASENAME=libprhash_pic.a
   18.20 +PACKAGE_TOP_DIR=prhashpic/
   18.21 +
   18.22 +# Functions
   18.23 +function checkReturnCode
   18.24 +{
   18.25 +    rc=$?
   18.26 +    if [ $rc != 0 ]
   18.27 +    then
   18.28 +        exit $rc
   18.29 +    fi
   18.30 +}
   18.31 +function makeDirectory
   18.32 +# $1 directory path
   18.33 +# $2 permission (optional)
   18.34 +{
   18.35 +    mkdir -p "$1"
   18.36 +    checkReturnCode
   18.37 +    if [ "$2" != "" ]
   18.38 +    then
   18.39 +      chmod $2 "$1"
   18.40 +      checkReturnCode
   18.41 +    fi
   18.42 +}
   18.43 +function copyFileToTmpDir
   18.44 +# $1 from-file path
   18.45 +# $2 to-file path
   18.46 +# $3 permission
   18.47 +{
   18.48 +    cp "$1" "$2"
   18.49 +    checkReturnCode
   18.50 +    if [ "$3" != "" ]
   18.51 +    then
   18.52 +        chmod $3 "$2"
   18.53 +        checkReturnCode
   18.54 +    fi
   18.55 +}
   18.56 +
   18.57 +# Setup
   18.58 +cd "${TOP}"
   18.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
   18.60 +rm -rf ${NBTMPDIR}
   18.61 +mkdir -p ${NBTMPDIR}
   18.62 +
   18.63 +# Copy files and create directories and links
   18.64 +cd "${TOP}"
   18.65 +makeDirectory "${NBTMPDIR}/prhashpic/lib"
   18.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
   18.67 +
   18.68 +
   18.69 +# Generate tar file
   18.70 +cd "${TOP}"
   18.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhashpic.tar
   18.72 +cd ${NBTMPDIR}
   18.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhashpic.tar *
   18.74 +checkReturnCode
   18.75 +
   18.76 +# Cleanup
   18.77 +cd "${TOP}"
   18.78 +rm -rf ${NBTMPDIR}
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/nb__prhash_pic/nbproject/Package-Release.bash	Fri Feb 14 07:19:19 2014 -0800
    19.3 @@ -0,0 +1,75 @@
    19.4 +#!/bin/bash -x
    19.5 +
    19.6 +#
    19.7 +# Generated - do not edit!
    19.8 +#
    19.9 +
   19.10 +# Macros
   19.11 +TOP=`pwd`
   19.12 +CND_PLATFORM=GNU-Linux-x86
   19.13 +CND_CONF=Release
   19.14 +CND_DISTDIR=dist
   19.15 +CND_BUILDDIR=build
   19.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
   19.17 +TMPDIRNAME=tmp-packaging
   19.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprhash_pic.a
   19.19 +OUTPUT_BASENAME=libprhash_pic.a
   19.20 +PACKAGE_TOP_DIR=prhashpic/
   19.21 +
   19.22 +# Functions
   19.23 +function checkReturnCode
   19.24 +{
   19.25 +    rc=$?
   19.26 +    if [ $rc != 0 ]
   19.27 +    then
   19.28 +        exit $rc
   19.29 +    fi
   19.30 +}
   19.31 +function makeDirectory
   19.32 +# $1 directory path
   19.33 +# $2 permission (optional)
   19.34 +{
   19.35 +    mkdir -p "$1"
   19.36 +    checkReturnCode
   19.37 +    if [ "$2" != "" ]
   19.38 +    then
   19.39 +      chmod $2 "$1"
   19.40 +      checkReturnCode
   19.41 +    fi
   19.42 +}
   19.43 +function copyFileToTmpDir
   19.44 +# $1 from-file path
   19.45 +# $2 to-file path
   19.46 +# $3 permission
   19.47 +{
   19.48 +    cp "$1" "$2"
   19.49 +    checkReturnCode
   19.50 +    if [ "$3" != "" ]
   19.51 +    then
   19.52 +        chmod $3 "$2"
   19.53 +        checkReturnCode
   19.54 +    fi
   19.55 +}
   19.56 +
   19.57 +# Setup
   19.58 +cd "${TOP}"
   19.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
   19.60 +rm -rf ${NBTMPDIR}
   19.61 +mkdir -p ${NBTMPDIR}
   19.62 +
   19.63 +# Copy files and create directories and links
   19.64 +cd "${TOP}"
   19.65 +makeDirectory "${NBTMPDIR}/prhashpic/lib"
   19.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
   19.67 +
   19.68 +
   19.69 +# Generate tar file
   19.70 +cd "${TOP}"
   19.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhashpic.tar
   19.72 +cd ${NBTMPDIR}
   19.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prhashpic.tar *
   19.74 +checkReturnCode
   19.75 +
   19.76 +# Cleanup
   19.77 +cd "${TOP}"
   19.78 +rm -rf ${NBTMPDIR}
    20.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    20.2 +++ b/nb__prhash_pic/nbproject/configurations.xml	Fri Feb 14 07:19:19 2014 -0800
    20.3 @@ -0,0 +1,70 @@
    20.4 +<?xml version="1.0" encoding="UTF-8"?>
    20.5 +<configurationDescriptor version="79">
    20.6 +  <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
    20.7 +    <logicalFolder name="HeaderFiles"
    20.8 +                   displayName="Header Files"
    20.9 +                   projectFiles="true">
   20.10 +    </logicalFolder>
   20.11 +    <logicalFolder name="ResourceFiles"
   20.12 +                   displayName="Resource Files"
   20.13 +                   projectFiles="true">
   20.14 +    </logicalFolder>
   20.15 +    <logicalFolder name="SourceFiles"
   20.16 +                   displayName="Source Files"
   20.17 +                   projectFiles="true">
   20.18 +      <itemPath>../PrivateHash.c</itemPath>
   20.19 +      <itemPath>../jenkinsHash_lookup3.c</itemPath>
   20.20 +      <itemPath>../jenkinsHash_lookup8.c</itemPath>
   20.21 +      <itemPath>../prhash.h</itemPath>
   20.22 +    </logicalFolder>
   20.23 +    <logicalFolder name="TestFiles"
   20.24 +                   displayName="Test Files"
   20.25 +                   projectFiles="false"
   20.26 +                   kind="TEST_LOGICAL_FOLDER">
   20.27 +    </logicalFolder>
   20.28 +    <logicalFolder name="ExternalFiles"
   20.29 +                   displayName="Important Files"
   20.30 +                   projectFiles="false"
   20.31 +                   kind="IMPORTANT_FILES_FOLDER">
   20.32 +      <itemPath>Makefile</itemPath>
   20.33 +    </logicalFolder>
   20.34 +  </logicalFolder>
   20.35 +  <projectmakefile>Makefile</projectmakefile>
   20.36 +  <confs>
   20.37 +    <conf name="Debug" type="3">
   20.38 +      <toolsSet>
   20.39 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
   20.40 +        <compilerSet>default</compilerSet>
   20.41 +      </toolsSet>
   20.42 +      <compileType>
   20.43 +        <cTool>
   20.44 +          <commandLine>-fPIC</commandLine>
   20.45 +        </cTool>
   20.46 +        <archiverTool>
   20.47 +        </archiverTool>
   20.48 +      </compileType>
   20.49 +    </conf>
   20.50 +    <conf name="Release" type="3">
   20.51 +      <toolsSet>
   20.52 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
   20.53 +        <compilerSet>default</compilerSet>
   20.54 +      </toolsSet>
   20.55 +      <compileType>
   20.56 +        <cTool>
   20.57 +          <developmentMode>5</developmentMode>
   20.58 +        </cTool>
   20.59 +        <ccTool>
   20.60 +          <developmentMode>5</developmentMode>
   20.61 +        </ccTool>
   20.62 +        <fortranCompilerTool>
   20.63 +          <developmentMode>5</developmentMode>
   20.64 +        </fortranCompilerTool>
   20.65 +        <asmTool>
   20.66 +          <developmentMode>5</developmentMode>
   20.67 +        </asmTool>
   20.68 +        <archiverTool>
   20.69 +        </archiverTool>
   20.70 +      </compileType>
   20.71 +    </conf>
   20.72 +  </confs>
   20.73 +</configurationDescriptor>
    21.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    21.2 +++ b/nb__prhash_pic/nbproject/private/Makefile-variables.mk	Fri Feb 14 07:19:19 2014 -0800
    21.3 @@ -0,0 +1,7 @@
    21.4 +#
    21.5 +# Generated - do not edit!
    21.6 +#
    21.7 +# NOCDDL
    21.8 +#
    21.9 +# Debug configuration
   21.10 +# Release configuration
    22.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    22.2 +++ b/nb__prhash_pic/nbproject/private/configurations.xml	Fri Feb 14 07:19:19 2014 -0800
    22.3 @@ -0,0 +1,78 @@
    22.4 +<?xml version="1.0" encoding="UTF-8"?>
    22.5 +<configurationDescriptor version="79">
    22.6 +  <projectmakefile>Makefile</projectmakefile>
    22.7 +  <confs>
    22.8 +    <conf name="Debug" type="3">
    22.9 +      <toolsSet>
   22.10 +        <developmentServer>localhost</developmentServer>
   22.11 +        <platform>2</platform>
   22.12 +      </toolsSet>
   22.13 +      <dbx_gdbdebugger version="1">
   22.14 +        <gdb_pathmaps>
   22.15 +        </gdb_pathmaps>
   22.16 +        <gdb_interceptlist>
   22.17 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   22.18 +        </gdb_interceptlist>
   22.19 +        <gdb_options>
   22.20 +          <DebugOptions>
   22.21 +          </DebugOptions>
   22.22 +        </gdb_options>
   22.23 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   22.24 +      </dbx_gdbdebugger>
   22.25 +      <gizmo_options version="3">
   22.26 +        <configurationname>GizmoSimple</configurationname>
   22.27 +      </gizmo_options>
   22.28 +      <nativedebugger version="1">
   22.29 +        <engine>gdb</engine>
   22.30 +      </nativedebugger>
   22.31 +      <runprofile version="9">
   22.32 +        <runcommandpicklist>
   22.33 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   22.34 +        </runcommandpicklist>
   22.35 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   22.36 +        <rundir></rundir>
   22.37 +        <buildfirst>true</buildfirst>
   22.38 +        <terminal-type>0</terminal-type>
   22.39 +        <remove-instrumentation>0</remove-instrumentation>
   22.40 +        <environment>
   22.41 +        </environment>
   22.42 +      </runprofile>
   22.43 +    </conf>
   22.44 +    <conf name="Release" type="3">
   22.45 +      <toolsSet>
   22.46 +        <developmentServer>localhost</developmentServer>
   22.47 +        <platform>2</platform>
   22.48 +      </toolsSet>
   22.49 +      <dbx_gdbdebugger version="1">
   22.50 +        <gdb_pathmaps>
   22.51 +        </gdb_pathmaps>
   22.52 +        <gdb_interceptlist>
   22.53 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   22.54 +        </gdb_interceptlist>
   22.55 +        <gdb_options>
   22.56 +          <DebugOptions>
   22.57 +          </DebugOptions>
   22.58 +        </gdb_options>
   22.59 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   22.60 +      </dbx_gdbdebugger>
   22.61 +      <gizmo_options version="3">
   22.62 +        <configurationname>GizmoSimple</configurationname>
   22.63 +      </gizmo_options>
   22.64 +      <nativedebugger version="1">
   22.65 +        <engine>gdb</engine>
   22.66 +      </nativedebugger>
   22.67 +      <runprofile version="9">
   22.68 +        <runcommandpicklist>
   22.69 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   22.70 +        </runcommandpicklist>
   22.71 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   22.72 +        <rundir></rundir>
   22.73 +        <buildfirst>true</buildfirst>
   22.74 +        <terminal-type>0</terminal-type>
   22.75 +        <remove-instrumentation>0</remove-instrumentation>
   22.76 +        <environment>
   22.77 +        </environment>
   22.78 +      </runprofile>
   22.79 +    </conf>
   22.80 +  </confs>
   22.81 +</configurationDescriptor>
    23.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    23.2 +++ b/nb__prhash_pic/nbproject/private/private.xml	Fri Feb 14 07:19:19 2014 -0800
    23.3 @@ -0,0 +1,7 @@
    23.4 +<?xml version="1.0" encoding="UTF-8"?>
    23.5 +<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
    23.6 +    <data xmlns="http://www.netbeans.org/ns/make-project-private/1">
    23.7 +        <activeConfTypeElem>3</activeConfTypeElem>
    23.8 +        <activeConfIndexElem>0</activeConfIndexElem>
    23.9 +    </data>
   23.10 +</project-private>
    24.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    24.2 +++ b/nb__prhash_pic/nbproject/project.xml	Fri Feb 14 07:19:19 2014 -0800
    24.3 @@ -0,0 +1,25 @@
    24.4 +<?xml version="1.0" encoding="UTF-8"?>
    24.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
    24.6 +    <type>org.netbeans.modules.cnd.makeproject</type>
    24.7 +    <configuration>
    24.8 +        <data xmlns="http://www.netbeans.org/ns/make-project/1">
    24.9 +            <name>prhash_pic</name>
   24.10 +            <c-extensions>c</c-extensions>
   24.11 +            <cpp-extensions/>
   24.12 +            <header-extensions>h</header-extensions>
   24.13 +            <sourceEncoding>UTF-8</sourceEncoding>
   24.14 +            <make-dep-projects/>
   24.15 +            <sourceRootList/>
   24.16 +            <confList>
   24.17 +                <confElem>
   24.18 +                    <name>Debug</name>
   24.19 +                    <type>3</type>
   24.20 +                </confElem>
   24.21 +                <confElem>
   24.22 +                    <name>Release</name>
   24.23 +                    <type>3</type>
   24.24 +                </confElem>
   24.25 +            </confList>
   24.26 +        </data>
   24.27 +    </configuration>
   24.28 +</project>