changeset 22:943e99459739 Univ_dev tip

adding netbeans project directories to repository
author Sean Halle <seanhalle@yahoo.com>
date Fri, 14 Feb 2014 07:49:50 -0800
parents 5837ad792168
children
files nb__prparam/.dep.inc nb__prparam/Makefile nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o.d nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o.d nb__prparam/dist/Debug/GNU-Linux-x86/libprparam.a nb__prparam/nbproject/Makefile-Debug.mk nb__prparam/nbproject/Makefile-Release.mk nb__prparam/nbproject/Makefile-impl.mk nb__prparam/nbproject/Makefile-variables.mk nb__prparam/nbproject/Package-Debug.bash nb__prparam/nbproject/Package-Release.bash nb__prparam/nbproject/configurations.xml nb__prparam/nbproject/private/Makefile-variables.mk nb__prparam/nbproject/private/configurations.xml nb__prparam/nbproject/private/private.xml nb__prparam/nbproject/project.xml nb__prparam_pic/.dep.inc nb__prparam_pic/Makefile nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o.d nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o.d nb__prparam_pic/dist/Debug/GNU-Linux-x86/libprparam_pic.a nb__prparam_pic/nbproject/Makefile-Debug.mk nb__prparam_pic/nbproject/Makefile-Release.mk nb__prparam_pic/nbproject/Makefile-impl.mk nb__prparam_pic/nbproject/Makefile-variables.mk nb__prparam_pic/nbproject/Package-Debug.bash nb__prparam_pic/nbproject/Package-Release.bash nb__prparam_pic/nbproject/configurations.xml nb__prparam_pic/nbproject/private/Makefile-variables.mk nb__prparam_pic/nbproject/private/configurations.xml nb__prparam_pic/nbproject/private/private.xml nb__prparam_pic/nbproject/project.xml
diffstat 36 files changed, 1640 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/nb__prparam/.dep.inc	Fri Feb 14 07:49:50 2014 -0800
     1.3 @@ -0,0 +1,5 @@
     1.4 +# This code depends on make tool being used
     1.5 +DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES}))
     1.6 +ifneq (${DEPFILES},)
     1.7 +include ${DEPFILES}
     1.8 +endif
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/nb__prparam/Makefile	Fri Feb 14 07:49:50 2014 -0800
     2.3 @@ -0,0 +1,128 @@
     2.4 +#
     2.5 +#  There exist several targets which are by default empty and which can be 
     2.6 +#  used for execution of your targets. These targets are usually executed 
     2.7 +#  before and after some main targets. They are: 
     2.8 +#
     2.9 +#     .build-pre:              called before 'build' target
    2.10 +#     .build-post:             called after 'build' target
    2.11 +#     .clean-pre:              called before 'clean' target
    2.12 +#     .clean-post:             called after 'clean' target
    2.13 +#     .clobber-pre:            called before 'clobber' target
    2.14 +#     .clobber-post:           called after 'clobber' target
    2.15 +#     .all-pre:                called before 'all' target
    2.16 +#     .all-post:               called after 'all' target
    2.17 +#     .help-pre:               called before 'help' target
    2.18 +#     .help-post:              called after 'help' target
    2.19 +#
    2.20 +#  Targets beginning with '.' are not intended to be called on their own.
    2.21 +#
    2.22 +#  Main targets can be executed directly, and they are:
    2.23 +#  
    2.24 +#     build                    build a specific configuration
    2.25 +#     clean                    remove built files from a configuration
    2.26 +#     clobber                  remove all built files
    2.27 +#     all                      build all configurations
    2.28 +#     help                     print help mesage
    2.29 +#  
    2.30 +#  Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
    2.31 +#  .help-impl are implemented in nbproject/makefile-impl.mk.
    2.32 +#
    2.33 +#  Available make variables:
    2.34 +#
    2.35 +#     CND_BASEDIR                base directory for relative paths
    2.36 +#     CND_DISTDIR                default top distribution directory (build artifacts)
    2.37 +#     CND_BUILDDIR               default top build directory (object files, ...)
    2.38 +#     CONF                       name of current configuration
    2.39 +#     CND_PLATFORM_${CONF}       platform name (current configuration)
    2.40 +#     CND_ARTIFACT_DIR_${CONF}   directory of build artifact (current configuration)
    2.41 +#     CND_ARTIFACT_NAME_${CONF}  name of build artifact (current configuration)
    2.42 +#     CND_ARTIFACT_PATH_${CONF}  path to build artifact (current configuration)
    2.43 +#     CND_PACKAGE_DIR_${CONF}    directory of package (current configuration)
    2.44 +#     CND_PACKAGE_NAME_${CONF}   name of package (current configuration)
    2.45 +#     CND_PACKAGE_PATH_${CONF}   path to package (current configuration)
    2.46 +#
    2.47 +# NOCDDL
    2.48 +
    2.49 +
    2.50 +# Environment 
    2.51 +MKDIR=mkdir
    2.52 +CP=cp
    2.53 +CCADMIN=CCadmin
    2.54 +
    2.55 +
    2.56 +# build
    2.57 +build: .build-post
    2.58 +
    2.59 +.build-pre:
    2.60 +# Add your pre 'build' code here...
    2.61 +
    2.62 +.build-post: .build-impl
    2.63 +# Add your post 'build' code here...
    2.64 +
    2.65 +
    2.66 +# clean
    2.67 +clean: .clean-post
    2.68 +
    2.69 +.clean-pre:
    2.70 +# Add your pre 'clean' code here...
    2.71 +
    2.72 +.clean-post: .clean-impl
    2.73 +# Add your post 'clean' code here...
    2.74 +
    2.75 +
    2.76 +# clobber
    2.77 +clobber: .clobber-post
    2.78 +
    2.79 +.clobber-pre:
    2.80 +# Add your pre 'clobber' code here...
    2.81 +
    2.82 +.clobber-post: .clobber-impl
    2.83 +# Add your post 'clobber' code here...
    2.84 +
    2.85 +
    2.86 +# all
    2.87 +all: .all-post
    2.88 +
    2.89 +.all-pre:
    2.90 +# Add your pre 'all' code here...
    2.91 +
    2.92 +.all-post: .all-impl
    2.93 +# Add your post 'all' code here...
    2.94 +
    2.95 +
    2.96 +# build tests
    2.97 +build-tests: .build-tests-post
    2.98 +
    2.99 +.build-tests-pre:
   2.100 +# Add your pre 'build-tests' code here...
   2.101 +
   2.102 +.build-tests-post: .build-tests-impl
   2.103 +# Add your post 'build-tests' code here...
   2.104 +
   2.105 +
   2.106 +# run tests
   2.107 +test: .test-post
   2.108 +
   2.109 +.test-pre:
   2.110 +# Add your pre 'test' code here...
   2.111 +
   2.112 +.test-post: .test-impl
   2.113 +# Add your post 'test' code here...
   2.114 +
   2.115 +
   2.116 +# help
   2.117 +help: .help-post
   2.118 +
   2.119 +.help-pre:
   2.120 +# Add your pre 'help' code here...
   2.121 +
   2.122 +.help-post: .help-impl
   2.123 +# Add your post 'help' code here...
   2.124 +
   2.125 +
   2.126 +
   2.127 +# include project implementation makefile
   2.128 +include nbproject/Makefile-impl.mk
   2.129 +
   2.130 +# include project make variables
   2.131 +include nbproject/Makefile-variables.mk
     3.1 Binary file nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o has changed
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o.d	Fri Feb 14 07:49:50 2014 -0800
     4.3 @@ -0,0 +1,1 @@
     4.4 +build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o: ../ParamBag.c
     5.1 Binary file nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o has changed
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/nb__prparam/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o.d	Fri Feb 14 07:49:50 2014 -0800
     6.3 @@ -0,0 +1,2 @@
     6.4 +build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o: \
     6.5 + ../ReadParamsFromFile.c
     7.1 Binary file nb__prparam/dist/Debug/GNU-Linux-x86/libprparam.a has changed
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/nb__prparam/nbproject/Makefile-Debug.mk	Fri Feb 14 07:49:50 2014 -0800
     8.3 @@ -0,0 +1,91 @@
     8.4 +#
     8.5 +# Generated Makefile - do not edit!
     8.6 +#
     8.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
     8.8 +# has a -pre and a -post target defined where you can add customized code.
     8.9 +#
    8.10 +# This makefile implements configuration specific macros and targets.
    8.11 +
    8.12 +
    8.13 +# Environment
    8.14 +MKDIR=mkdir
    8.15 +CP=cp
    8.16 +GREP=grep
    8.17 +NM=nm
    8.18 +CCADMIN=CCadmin
    8.19 +RANLIB=ranlib
    8.20 +CC=gcc
    8.21 +CCC=gcc-4.6
    8.22 +CXX=gcc-4.6
    8.23 +FC=gfortran
    8.24 +AS=as
    8.25 +
    8.26 +# Macros
    8.27 +CND_PLATFORM=GNU-Linux-x86
    8.28 +CND_CONF=Debug
    8.29 +CND_DISTDIR=dist
    8.30 +CND_BUILDDIR=build
    8.31 +
    8.32 +# Include project Makefile
    8.33 +include Makefile
    8.34 +
    8.35 +# Object Directory
    8.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
    8.37 +
    8.38 +# Object Files
    8.39 +OBJECTFILES= \
    8.40 +	${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o \
    8.41 +	${OBJECTDIR}/_ext/1472/ParamBag.o
    8.42 +
    8.43 +
    8.44 +# C Compiler Flags
    8.45 +CFLAGS=
    8.46 +
    8.47 +# CC Compiler Flags
    8.48 +CCFLAGS=
    8.49 +CXXFLAGS=
    8.50 +
    8.51 +# Fortran Compiler Flags
    8.52 +FFLAGS=
    8.53 +
    8.54 +# Assembler Flags
    8.55 +ASFLAGS=
    8.56 +
    8.57 +# Link Libraries and Options
    8.58 +LDLIBSOPTIONS=
    8.59 +
    8.60 +# Build Targets
    8.61 +.build-conf: ${BUILD_SUBPROJECTS}
    8.62 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    8.63 +
    8.64 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a: ${OBJECTFILES}
    8.65 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
    8.66 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    8.67 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a ${OBJECTFILES} 
    8.68 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    8.69 +
    8.70 +${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o: ../ReadParamsFromFile.c 
    8.71 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    8.72 +	${RM} $@.d
    8.73 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o ../ReadParamsFromFile.c
    8.74 +
    8.75 +${OBJECTDIR}/_ext/1472/ParamBag.o: ../ParamBag.c 
    8.76 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    8.77 +	${RM} $@.d
    8.78 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ParamBag.o ../ParamBag.c
    8.79 +
    8.80 +# Subprojects
    8.81 +.build-subprojects:
    8.82 +
    8.83 +# Clean Targets
    8.84 +.clean-conf: ${CLEAN_SUBPROJECTS}
    8.85 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
    8.86 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    8.87 +
    8.88 +# Subprojects
    8.89 +.clean-subprojects:
    8.90 +
    8.91 +# Enable dependency checking
    8.92 +.dep.inc: .depcheck-impl
    8.93 +
    8.94 +include .dep.inc
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/nb__prparam/nbproject/Makefile-Release.mk	Fri Feb 14 07:49:50 2014 -0800
     9.3 @@ -0,0 +1,91 @@
     9.4 +#
     9.5 +# Generated Makefile - do not edit!
     9.6 +#
     9.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
     9.8 +# has a -pre and a -post target defined where you can add customized code.
     9.9 +#
    9.10 +# This makefile implements configuration specific macros and targets.
    9.11 +
    9.12 +
    9.13 +# Environment
    9.14 +MKDIR=mkdir
    9.15 +CP=cp
    9.16 +GREP=grep
    9.17 +NM=nm
    9.18 +CCADMIN=CCadmin
    9.19 +RANLIB=ranlib
    9.20 +CC=gcc
    9.21 +CCC=gcc-4.6
    9.22 +CXX=gcc-4.6
    9.23 +FC=gfortran
    9.24 +AS=as
    9.25 +
    9.26 +# Macros
    9.27 +CND_PLATFORM=GNU-Linux-x86
    9.28 +CND_CONF=Release
    9.29 +CND_DISTDIR=dist
    9.30 +CND_BUILDDIR=build
    9.31 +
    9.32 +# Include project Makefile
    9.33 +include Makefile
    9.34 +
    9.35 +# Object Directory
    9.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
    9.37 +
    9.38 +# Object Files
    9.39 +OBJECTFILES= \
    9.40 +	${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o \
    9.41 +	${OBJECTDIR}/_ext/1472/ParamBag.o
    9.42 +
    9.43 +
    9.44 +# C Compiler Flags
    9.45 +CFLAGS=
    9.46 +
    9.47 +# CC Compiler Flags
    9.48 +CCFLAGS=
    9.49 +CXXFLAGS=
    9.50 +
    9.51 +# Fortran Compiler Flags
    9.52 +FFLAGS=
    9.53 +
    9.54 +# Assembler Flags
    9.55 +ASFLAGS=
    9.56 +
    9.57 +# Link Libraries and Options
    9.58 +LDLIBSOPTIONS=
    9.59 +
    9.60 +# Build Targets
    9.61 +.build-conf: ${BUILD_SUBPROJECTS}
    9.62 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    9.63 +
    9.64 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a: ${OBJECTFILES}
    9.65 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
    9.66 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    9.67 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a ${OBJECTFILES} 
    9.68 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    9.69 +
    9.70 +${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o: ../ReadParamsFromFile.c 
    9.71 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    9.72 +	${RM} $@.d
    9.73 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o ../ReadParamsFromFile.c
    9.74 +
    9.75 +${OBJECTDIR}/_ext/1472/ParamBag.o: ../ParamBag.c 
    9.76 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
    9.77 +	${RM} $@.d
    9.78 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ParamBag.o ../ParamBag.c
    9.79 +
    9.80 +# Subprojects
    9.81 +.build-subprojects:
    9.82 +
    9.83 +# Clean Targets
    9.84 +.clean-conf: ${CLEAN_SUBPROJECTS}
    9.85 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
    9.86 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
    9.87 +
    9.88 +# Subprojects
    9.89 +.clean-subprojects:
    9.90 +
    9.91 +# Enable dependency checking
    9.92 +.dep.inc: .depcheck-impl
    9.93 +
    9.94 +include .dep.inc
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/nb__prparam/nbproject/Makefile-impl.mk	Fri Feb 14 07:49:50 2014 -0800
    10.3 @@ -0,0 +1,133 @@
    10.4 +# 
    10.5 +# Generated Makefile - do not edit! 
    10.6 +# 
    10.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    10.8 +# has a pre- and a post- target defined where you can add customization code.
    10.9 +#
   10.10 +# This makefile implements macros and targets common to all configurations.
   10.11 +#
   10.12 +# NOCDDL
   10.13 +
   10.14 +
   10.15 +# Building and Cleaning subprojects are done by default, but can be controlled with the SUB
   10.16 +# macro. If SUB=no, subprojects will not be built or cleaned. The following macro
   10.17 +# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf
   10.18 +# and .clean-reqprojects-conf unless SUB has the value 'no'
   10.19 +SUB_no=NO
   10.20 +SUBPROJECTS=${SUB_${SUB}}
   10.21 +BUILD_SUBPROJECTS_=.build-subprojects
   10.22 +BUILD_SUBPROJECTS_NO=
   10.23 +BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}
   10.24 +CLEAN_SUBPROJECTS_=.clean-subprojects
   10.25 +CLEAN_SUBPROJECTS_NO=
   10.26 +CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}
   10.27 +
   10.28 +
   10.29 +# Project Name
   10.30 +PROJECTNAME=prparam
   10.31 +
   10.32 +# Active Configuration
   10.33 +DEFAULTCONF=Debug
   10.34 +CONF=${DEFAULTCONF}
   10.35 +
   10.36 +# All Configurations
   10.37 +ALLCONFS=Debug Release 
   10.38 +
   10.39 +
   10.40 +# build
   10.41 +.build-impl: .build-pre .validate-impl .depcheck-impl
   10.42 +	@#echo "=> Running $@... Configuration=$(CONF)"
   10.43 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf
   10.44 +
   10.45 +
   10.46 +# clean
   10.47 +.clean-impl: .clean-pre .validate-impl .depcheck-impl
   10.48 +	@#echo "=> Running $@... Configuration=$(CONF)"
   10.49 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf
   10.50 +
   10.51 +
   10.52 +# clobber 
   10.53 +.clobber-impl: .clobber-pre .depcheck-impl
   10.54 +	@#echo "=> Running $@..."
   10.55 +	for CONF in ${ALLCONFS}; \
   10.56 +	do \
   10.57 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf; \
   10.58 +	done
   10.59 +
   10.60 +# all 
   10.61 +.all-impl: .all-pre .depcheck-impl
   10.62 +	@#echo "=> Running $@..."
   10.63 +	for CONF in ${ALLCONFS}; \
   10.64 +	do \
   10.65 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf; \
   10.66 +	done
   10.67 +
   10.68 +# build tests
   10.69 +.build-tests-impl: .build-impl .build-tests-pre
   10.70 +	@#echo "=> Running $@... Configuration=$(CONF)"
   10.71 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-tests-conf
   10.72 +
   10.73 +# run tests
   10.74 +.test-impl: .build-tests-impl .test-pre
   10.75 +	@#echo "=> Running $@... Configuration=$(CONF)"
   10.76 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .test-conf
   10.77 +
   10.78 +# dependency checking support
   10.79 +.depcheck-impl:
   10.80 +	@echo "# This code depends on make tool being used" >.dep.inc
   10.81 +	@if [ -n "${MAKE_VERSION}" ]; then \
   10.82 +	    echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES}))" >>.dep.inc; \
   10.83 +	    echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \
   10.84 +	    echo "include \$${DEPFILES}" >>.dep.inc; \
   10.85 +	    echo "endif" >>.dep.inc; \
   10.86 +	else \
   10.87 +	    echo ".KEEP_STATE:" >>.dep.inc; \
   10.88 +	    echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \
   10.89 +	fi
   10.90 +
   10.91 +# configuration validation
   10.92 +.validate-impl:
   10.93 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
   10.94 +	then \
   10.95 +	    echo ""; \
   10.96 +	    echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \
   10.97 +	    echo "See 'make help' for details."; \
   10.98 +	    echo "Current directory: " `pwd`; \
   10.99 +	    echo ""; \
  10.100 +	fi
  10.101 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
  10.102 +	then \
  10.103 +	    exit 1; \
  10.104 +	fi
  10.105 +
  10.106 +
  10.107 +# help
  10.108 +.help-impl: .help-pre
  10.109 +	@echo "This makefile supports the following configurations:"
  10.110 +	@echo "    ${ALLCONFS}"
  10.111 +	@echo ""
  10.112 +	@echo "and the following targets:"
  10.113 +	@echo "    build  (default target)"
  10.114 +	@echo "    clean"
  10.115 +	@echo "    clobber"
  10.116 +	@echo "    all"
  10.117 +	@echo "    help"
  10.118 +	@echo ""
  10.119 +	@echo "Makefile Usage:"
  10.120 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] build"
  10.121 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] clean"
  10.122 +	@echo "    make [SUB=no] clobber"
  10.123 +	@echo "    make [SUB=no] all"
  10.124 +	@echo "    make help"
  10.125 +	@echo ""
  10.126 +	@echo "Target 'build' will build a specific configuration and, unless 'SUB=no',"
  10.127 +	@echo "    also build subprojects."
  10.128 +	@echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no',"
  10.129 +	@echo "    also clean subprojects."
  10.130 +	@echo "Target 'clobber' will remove all built files from all configurations and,"
  10.131 +	@echo "    unless 'SUB=no', also from subprojects."
  10.132 +	@echo "Target 'all' will will build all configurations and, unless 'SUB=no',"
  10.133 +	@echo "    also build subprojects."
  10.134 +	@echo "Target 'help' prints this message."
  10.135 +	@echo ""
  10.136 +
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/nb__prparam/nbproject/Makefile-variables.mk	Fri Feb 14 07:49:50 2014 -0800
    11.3 @@ -0,0 +1,35 @@
    11.4 +#
    11.5 +# Generated - do not edit!
    11.6 +#
    11.7 +# NOCDDL
    11.8 +#
    11.9 +CND_BASEDIR=`pwd`
   11.10 +CND_BUILDDIR=build
   11.11 +CND_DISTDIR=dist
   11.12 +# Debug configuration
   11.13 +CND_PLATFORM_Debug=GNU-Linux-x86
   11.14 +CND_ARTIFACT_DIR_Debug=dist/Debug/GNU-Linux-x86
   11.15 +CND_ARTIFACT_NAME_Debug=libprparam.a
   11.16 +CND_ARTIFACT_PATH_Debug=dist/Debug/GNU-Linux-x86/libprparam.a
   11.17 +CND_PACKAGE_DIR_Debug=dist/Debug/GNU-Linux-x86/package
   11.18 +CND_PACKAGE_NAME_Debug=prparam.tar
   11.19 +CND_PACKAGE_PATH_Debug=dist/Debug/GNU-Linux-x86/package/prparam.tar
   11.20 +# Release configuration
   11.21 +CND_PLATFORM_Release=GNU-Linux-x86
   11.22 +CND_ARTIFACT_DIR_Release=dist/Release/GNU-Linux-x86
   11.23 +CND_ARTIFACT_NAME_Release=libprparam.a
   11.24 +CND_ARTIFACT_PATH_Release=dist/Release/GNU-Linux-x86/libprparam.a
   11.25 +CND_PACKAGE_DIR_Release=dist/Release/GNU-Linux-x86/package
   11.26 +CND_PACKAGE_NAME_Release=prparam.tar
   11.27 +CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux-x86/package/prparam.tar
   11.28 +#
   11.29 +# include compiler specific variables
   11.30 +#
   11.31 +# dmake command
   11.32 +ROOT:sh = test -f nbproject/private/Makefile-variables.mk || \
   11.33 +	(mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk)
   11.34 +#
   11.35 +# gmake command
   11.36 +.PHONY: $(shell test -f nbproject/private/Makefile-variables.mk || (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk))
   11.37 +#
   11.38 +include nbproject/private/Makefile-variables.mk
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/nb__prparam/nbproject/Package-Debug.bash	Fri Feb 14 07:49:50 2014 -0800
    12.3 @@ -0,0 +1,75 @@
    12.4 +#!/bin/bash -x
    12.5 +
    12.6 +#
    12.7 +# Generated - do not edit!
    12.8 +#
    12.9 +
   12.10 +# Macros
   12.11 +TOP=`pwd`
   12.12 +CND_PLATFORM=GNU-Linux-x86
   12.13 +CND_CONF=Debug
   12.14 +CND_DISTDIR=dist
   12.15 +CND_BUILDDIR=build
   12.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
   12.17 +TMPDIRNAME=tmp-packaging
   12.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
   12.19 +OUTPUT_BASENAME=libprparam.a
   12.20 +PACKAGE_TOP_DIR=prparam/
   12.21 +
   12.22 +# Functions
   12.23 +function checkReturnCode
   12.24 +{
   12.25 +    rc=$?
   12.26 +    if [ $rc != 0 ]
   12.27 +    then
   12.28 +        exit $rc
   12.29 +    fi
   12.30 +}
   12.31 +function makeDirectory
   12.32 +# $1 directory path
   12.33 +# $2 permission (optional)
   12.34 +{
   12.35 +    mkdir -p "$1"
   12.36 +    checkReturnCode
   12.37 +    if [ "$2" != "" ]
   12.38 +    then
   12.39 +      chmod $2 "$1"
   12.40 +      checkReturnCode
   12.41 +    fi
   12.42 +}
   12.43 +function copyFileToTmpDir
   12.44 +# $1 from-file path
   12.45 +# $2 to-file path
   12.46 +# $3 permission
   12.47 +{
   12.48 +    cp "$1" "$2"
   12.49 +    checkReturnCode
   12.50 +    if [ "$3" != "" ]
   12.51 +    then
   12.52 +        chmod $3 "$2"
   12.53 +        checkReturnCode
   12.54 +    fi
   12.55 +}
   12.56 +
   12.57 +# Setup
   12.58 +cd "${TOP}"
   12.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
   12.60 +rm -rf ${NBTMPDIR}
   12.61 +mkdir -p ${NBTMPDIR}
   12.62 +
   12.63 +# Copy files and create directories and links
   12.64 +cd "${TOP}"
   12.65 +makeDirectory "${NBTMPDIR}/prparam/lib"
   12.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
   12.67 +
   12.68 +
   12.69 +# Generate tar file
   12.70 +cd "${TOP}"
   12.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparam.tar
   12.72 +cd ${NBTMPDIR}
   12.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparam.tar *
   12.74 +checkReturnCode
   12.75 +
   12.76 +# Cleanup
   12.77 +cd "${TOP}"
   12.78 +rm -rf ${NBTMPDIR}
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/nb__prparam/nbproject/Package-Release.bash	Fri Feb 14 07:49:50 2014 -0800
    13.3 @@ -0,0 +1,75 @@
    13.4 +#!/bin/bash -x
    13.5 +
    13.6 +#
    13.7 +# Generated - do not edit!
    13.8 +#
    13.9 +
   13.10 +# Macros
   13.11 +TOP=`pwd`
   13.12 +CND_PLATFORM=GNU-Linux-x86
   13.13 +CND_CONF=Release
   13.14 +CND_DISTDIR=dist
   13.15 +CND_BUILDDIR=build
   13.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
   13.17 +TMPDIRNAME=tmp-packaging
   13.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam.a
   13.19 +OUTPUT_BASENAME=libprparam.a
   13.20 +PACKAGE_TOP_DIR=prparam/
   13.21 +
   13.22 +# Functions
   13.23 +function checkReturnCode
   13.24 +{
   13.25 +    rc=$?
   13.26 +    if [ $rc != 0 ]
   13.27 +    then
   13.28 +        exit $rc
   13.29 +    fi
   13.30 +}
   13.31 +function makeDirectory
   13.32 +# $1 directory path
   13.33 +# $2 permission (optional)
   13.34 +{
   13.35 +    mkdir -p "$1"
   13.36 +    checkReturnCode
   13.37 +    if [ "$2" != "" ]
   13.38 +    then
   13.39 +      chmod $2 "$1"
   13.40 +      checkReturnCode
   13.41 +    fi
   13.42 +}
   13.43 +function copyFileToTmpDir
   13.44 +# $1 from-file path
   13.45 +# $2 to-file path
   13.46 +# $3 permission
   13.47 +{
   13.48 +    cp "$1" "$2"
   13.49 +    checkReturnCode
   13.50 +    if [ "$3" != "" ]
   13.51 +    then
   13.52 +        chmod $3 "$2"
   13.53 +        checkReturnCode
   13.54 +    fi
   13.55 +}
   13.56 +
   13.57 +# Setup
   13.58 +cd "${TOP}"
   13.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
   13.60 +rm -rf ${NBTMPDIR}
   13.61 +mkdir -p ${NBTMPDIR}
   13.62 +
   13.63 +# Copy files and create directories and links
   13.64 +cd "${TOP}"
   13.65 +makeDirectory "${NBTMPDIR}/prparam/lib"
   13.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
   13.67 +
   13.68 +
   13.69 +# Generate tar file
   13.70 +cd "${TOP}"
   13.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparam.tar
   13.72 +cd ${NBTMPDIR}
   13.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparam.tar *
   13.74 +checkReturnCode
   13.75 +
   13.76 +# Cleanup
   13.77 +cd "${TOP}"
   13.78 +rm -rf ${NBTMPDIR}
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/nb__prparam/nbproject/configurations.xml	Fri Feb 14 07:49:50 2014 -0800
    14.3 @@ -0,0 +1,66 @@
    14.4 +<?xml version="1.0" encoding="UTF-8"?>
    14.5 +<configurationDescriptor version="79">
    14.6 +  <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
    14.7 +    <logicalFolder name="HeaderFiles"
    14.8 +                   displayName="Header Files"
    14.9 +                   projectFiles="true">
   14.10 +    </logicalFolder>
   14.11 +    <logicalFolder name="ResourceFiles"
   14.12 +                   displayName="Resource Files"
   14.13 +                   projectFiles="true">
   14.14 +    </logicalFolder>
   14.15 +    <logicalFolder name="SourceFiles"
   14.16 +                   displayName="Source Files"
   14.17 +                   projectFiles="true">
   14.18 +      <itemPath>../ParamBag.c</itemPath>
   14.19 +      <itemPath>../ReadParamsFromFile.c</itemPath>
   14.20 +      <itemPath>../prparam.h</itemPath>
   14.21 +    </logicalFolder>
   14.22 +    <logicalFolder name="TestFiles"
   14.23 +                   displayName="Test Files"
   14.24 +                   projectFiles="false"
   14.25 +                   kind="TEST_LOGICAL_FOLDER">
   14.26 +    </logicalFolder>
   14.27 +    <logicalFolder name="ExternalFiles"
   14.28 +                   displayName="Important Files"
   14.29 +                   projectFiles="false"
   14.30 +                   kind="IMPORTANT_FILES_FOLDER">
   14.31 +      <itemPath>Makefile</itemPath>
   14.32 +    </logicalFolder>
   14.33 +  </logicalFolder>
   14.34 +  <projectmakefile>Makefile</projectmakefile>
   14.35 +  <confs>
   14.36 +    <conf name="Debug" type="3">
   14.37 +      <toolsSet>
   14.38 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
   14.39 +        <compilerSet>default</compilerSet>
   14.40 +      </toolsSet>
   14.41 +      <compileType>
   14.42 +        <archiverTool>
   14.43 +        </archiverTool>
   14.44 +      </compileType>
   14.45 +    </conf>
   14.46 +    <conf name="Release" type="3">
   14.47 +      <toolsSet>
   14.48 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
   14.49 +        <compilerSet>default</compilerSet>
   14.50 +      </toolsSet>
   14.51 +      <compileType>
   14.52 +        <cTool>
   14.53 +          <developmentMode>5</developmentMode>
   14.54 +        </cTool>
   14.55 +        <ccTool>
   14.56 +          <developmentMode>5</developmentMode>
   14.57 +        </ccTool>
   14.58 +        <fortranCompilerTool>
   14.59 +          <developmentMode>5</developmentMode>
   14.60 +        </fortranCompilerTool>
   14.61 +        <asmTool>
   14.62 +          <developmentMode>5</developmentMode>
   14.63 +        </asmTool>
   14.64 +        <archiverTool>
   14.65 +        </archiverTool>
   14.66 +      </compileType>
   14.67 +    </conf>
   14.68 +  </confs>
   14.69 +</configurationDescriptor>
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/nb__prparam/nbproject/private/Makefile-variables.mk	Fri Feb 14 07:49:50 2014 -0800
    15.3 @@ -0,0 +1,7 @@
    15.4 +#
    15.5 +# Generated - do not edit!
    15.6 +#
    15.7 +# NOCDDL
    15.8 +#
    15.9 +# Debug configuration
   15.10 +# Release configuration
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/nb__prparam/nbproject/private/configurations.xml	Fri Feb 14 07:49:50 2014 -0800
    16.3 @@ -0,0 +1,76 @@
    16.4 +<?xml version="1.0" encoding="UTF-8"?>
    16.5 +<configurationDescriptor version="79">
    16.6 +  <projectmakefile>Makefile</projectmakefile>
    16.7 +  <confs>
    16.8 +    <conf name="Debug" type="3">
    16.9 +      <toolsSet>
   16.10 +        <developmentServer>localhost</developmentServer>
   16.11 +        <platform>2</platform>
   16.12 +      </toolsSet>
   16.13 +      <dbx_gdbdebugger version="1">
   16.14 +        <gdb_pathmaps>
   16.15 +        </gdb_pathmaps>
   16.16 +        <gdb_interceptlist>
   16.17 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   16.18 +        </gdb_interceptlist>
   16.19 +        <gdb_options>
   16.20 +          <DebugOptions>
   16.21 +          </DebugOptions>
   16.22 +        </gdb_options>
   16.23 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   16.24 +      </dbx_gdbdebugger>
   16.25 +      <gizmo_options version="3">
   16.26 +      </gizmo_options>
   16.27 +      <nativedebugger version="1">
   16.28 +        <engine>gdb</engine>
   16.29 +      </nativedebugger>
   16.30 +      <runprofile version="9">
   16.31 +        <runcommandpicklist>
   16.32 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   16.33 +        </runcommandpicklist>
   16.34 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   16.35 +        <rundir></rundir>
   16.36 +        <buildfirst>true</buildfirst>
   16.37 +        <terminal-type>0</terminal-type>
   16.38 +        <remove-instrumentation>0</remove-instrumentation>
   16.39 +        <environment>
   16.40 +        </environment>
   16.41 +      </runprofile>
   16.42 +    </conf>
   16.43 +    <conf name="Release" type="3">
   16.44 +      <toolsSet>
   16.45 +        <developmentServer>localhost</developmentServer>
   16.46 +        <platform>2</platform>
   16.47 +      </toolsSet>
   16.48 +      <dbx_gdbdebugger version="1">
   16.49 +        <gdb_pathmaps>
   16.50 +        </gdb_pathmaps>
   16.51 +        <gdb_interceptlist>
   16.52 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   16.53 +        </gdb_interceptlist>
   16.54 +        <gdb_options>
   16.55 +          <DebugOptions>
   16.56 +          </DebugOptions>
   16.57 +        </gdb_options>
   16.58 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   16.59 +      </dbx_gdbdebugger>
   16.60 +      <gizmo_options version="3">
   16.61 +      </gizmo_options>
   16.62 +      <nativedebugger version="1">
   16.63 +        <engine>gdb</engine>
   16.64 +      </nativedebugger>
   16.65 +      <runprofile version="9">
   16.66 +        <runcommandpicklist>
   16.67 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   16.68 +        </runcommandpicklist>
   16.69 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   16.70 +        <rundir></rundir>
   16.71 +        <buildfirst>true</buildfirst>
   16.72 +        <terminal-type>0</terminal-type>
   16.73 +        <remove-instrumentation>0</remove-instrumentation>
   16.74 +        <environment>
   16.75 +        </environment>
   16.76 +      </runprofile>
   16.77 +    </conf>
   16.78 +  </confs>
   16.79 +</configurationDescriptor>
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/nb__prparam/nbproject/private/private.xml	Fri Feb 14 07:49:50 2014 -0800
    17.3 @@ -0,0 +1,8 @@
    17.4 +<?xml version="1.0" encoding="UTF-8"?>
    17.5 +<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
    17.6 +    <data xmlns="http://www.netbeans.org/ns/make-project-private/1">
    17.7 +        <activeConfTypeElem>3</activeConfTypeElem>
    17.8 +        <activeConfIndexElem>0</activeConfIndexElem>
    17.9 +    </data>
   17.10 +    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/>
   17.11 +</project-private>
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/nb__prparam/nbproject/project.xml	Fri Feb 14 07:49:50 2014 -0800
    18.3 @@ -0,0 +1,25 @@
    18.4 +<?xml version="1.0" encoding="UTF-8"?>
    18.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
    18.6 +    <type>org.netbeans.modules.cnd.makeproject</type>
    18.7 +    <configuration>
    18.8 +        <data xmlns="http://www.netbeans.org/ns/make-project/1">
    18.9 +            <name>prparam</name>
   18.10 +            <c-extensions>c</c-extensions>
   18.11 +            <cpp-extensions/>
   18.12 +            <header-extensions>h</header-extensions>
   18.13 +            <sourceEncoding>UTF-8</sourceEncoding>
   18.14 +            <make-dep-projects/>
   18.15 +            <sourceRootList/>
   18.16 +            <confList>
   18.17 +                <confElem>
   18.18 +                    <name>Debug</name>
   18.19 +                    <type>3</type>
   18.20 +                </confElem>
   18.21 +                <confElem>
   18.22 +                    <name>Release</name>
   18.23 +                    <type>3</type>
   18.24 +                </confElem>
   18.25 +            </confList>
   18.26 +        </data>
   18.27 +    </configuration>
   18.28 +</project>
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/nb__prparam_pic/.dep.inc	Fri Feb 14 07:49:50 2014 -0800
    19.3 @@ -0,0 +1,5 @@
    19.4 +# This code depends on make tool being used
    19.5 +DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES}))
    19.6 +ifneq (${DEPFILES},)
    19.7 +include ${DEPFILES}
    19.8 +endif
    20.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    20.2 +++ b/nb__prparam_pic/Makefile	Fri Feb 14 07:49:50 2014 -0800
    20.3 @@ -0,0 +1,128 @@
    20.4 +#
    20.5 +#  There exist several targets which are by default empty and which can be 
    20.6 +#  used for execution of your targets. These targets are usually executed 
    20.7 +#  before and after some main targets. They are: 
    20.8 +#
    20.9 +#     .build-pre:              called before 'build' target
   20.10 +#     .build-post:             called after 'build' target
   20.11 +#     .clean-pre:              called before 'clean' target
   20.12 +#     .clean-post:             called after 'clean' target
   20.13 +#     .clobber-pre:            called before 'clobber' target
   20.14 +#     .clobber-post:           called after 'clobber' target
   20.15 +#     .all-pre:                called before 'all' target
   20.16 +#     .all-post:               called after 'all' target
   20.17 +#     .help-pre:               called before 'help' target
   20.18 +#     .help-post:              called after 'help' target
   20.19 +#
   20.20 +#  Targets beginning with '.' are not intended to be called on their own.
   20.21 +#
   20.22 +#  Main targets can be executed directly, and they are:
   20.23 +#  
   20.24 +#     build                    build a specific configuration
   20.25 +#     clean                    remove built files from a configuration
   20.26 +#     clobber                  remove all built files
   20.27 +#     all                      build all configurations
   20.28 +#     help                     print help mesage
   20.29 +#  
   20.30 +#  Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
   20.31 +#  .help-impl are implemented in nbproject/makefile-impl.mk.
   20.32 +#
   20.33 +#  Available make variables:
   20.34 +#
   20.35 +#     CND_BASEDIR                base directory for relative paths
   20.36 +#     CND_DISTDIR                default top distribution directory (build artifacts)
   20.37 +#     CND_BUILDDIR               default top build directory (object files, ...)
   20.38 +#     CONF                       name of current configuration
   20.39 +#     CND_PLATFORM_${CONF}       platform name (current configuration)
   20.40 +#     CND_ARTIFACT_DIR_${CONF}   directory of build artifact (current configuration)
   20.41 +#     CND_ARTIFACT_NAME_${CONF}  name of build artifact (current configuration)
   20.42 +#     CND_ARTIFACT_PATH_${CONF}  path to build artifact (current configuration)
   20.43 +#     CND_PACKAGE_DIR_${CONF}    directory of package (current configuration)
   20.44 +#     CND_PACKAGE_NAME_${CONF}   name of package (current configuration)
   20.45 +#     CND_PACKAGE_PATH_${CONF}   path to package (current configuration)
   20.46 +#
   20.47 +# NOCDDL
   20.48 +
   20.49 +
   20.50 +# Environment 
   20.51 +MKDIR=mkdir
   20.52 +CP=cp
   20.53 +CCADMIN=CCadmin
   20.54 +
   20.55 +
   20.56 +# build
   20.57 +build: .build-post
   20.58 +
   20.59 +.build-pre:
   20.60 +# Add your pre 'build' code here...
   20.61 +
   20.62 +.build-post: .build-impl
   20.63 +# Add your post 'build' code here...
   20.64 +
   20.65 +
   20.66 +# clean
   20.67 +clean: .clean-post
   20.68 +
   20.69 +.clean-pre:
   20.70 +# Add your pre 'clean' code here...
   20.71 +
   20.72 +.clean-post: .clean-impl
   20.73 +# Add your post 'clean' code here...
   20.74 +
   20.75 +
   20.76 +# clobber
   20.77 +clobber: .clobber-post
   20.78 +
   20.79 +.clobber-pre:
   20.80 +# Add your pre 'clobber' code here...
   20.81 +
   20.82 +.clobber-post: .clobber-impl
   20.83 +# Add your post 'clobber' code here...
   20.84 +
   20.85 +
   20.86 +# all
   20.87 +all: .all-post
   20.88 +
   20.89 +.all-pre:
   20.90 +# Add your pre 'all' code here...
   20.91 +
   20.92 +.all-post: .all-impl
   20.93 +# Add your post 'all' code here...
   20.94 +
   20.95 +
   20.96 +# build tests
   20.97 +build-tests: .build-tests-post
   20.98 +
   20.99 +.build-tests-pre:
  20.100 +# Add your pre 'build-tests' code here...
  20.101 +
  20.102 +.build-tests-post: .build-tests-impl
  20.103 +# Add your post 'build-tests' code here...
  20.104 +
  20.105 +
  20.106 +# run tests
  20.107 +test: .test-post
  20.108 +
  20.109 +.test-pre:
  20.110 +# Add your pre 'test' code here...
  20.111 +
  20.112 +.test-post: .test-impl
  20.113 +# Add your post 'test' code here...
  20.114 +
  20.115 +
  20.116 +# help
  20.117 +help: .help-post
  20.118 +
  20.119 +.help-pre:
  20.120 +# Add your pre 'help' code here...
  20.121 +
  20.122 +.help-post: .help-impl
  20.123 +# Add your post 'help' code here...
  20.124 +
  20.125 +
  20.126 +
  20.127 +# include project implementation makefile
  20.128 +include nbproject/Makefile-impl.mk
  20.129 +
  20.130 +# include project make variables
  20.131 +include nbproject/Makefile-variables.mk
    21.1 Binary file nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o has changed
    22.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    22.2 +++ b/nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o.d	Fri Feb 14 07:49:50 2014 -0800
    22.3 @@ -0,0 +1,1 @@
    22.4 +build/Debug/GNU-Linux-x86/_ext/1472/ParamBag.o: ../ParamBag.c
    23.1 Binary file nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o has changed
    24.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    24.2 +++ b/nb__prparam_pic/build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o.d	Fri Feb 14 07:49:50 2014 -0800
    24.3 @@ -0,0 +1,2 @@
    24.4 +build/Debug/GNU-Linux-x86/_ext/1472/ReadParamsFromFile.o: \
    24.5 + ../ReadParamsFromFile.c
    25.1 Binary file nb__prparam_pic/dist/Debug/GNU-Linux-x86/libprparam_pic.a has changed
    26.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    26.2 +++ b/nb__prparam_pic/nbproject/Makefile-Debug.mk	Fri Feb 14 07:49:50 2014 -0800
    26.3 @@ -0,0 +1,91 @@
    26.4 +#
    26.5 +# Generated Makefile - do not edit!
    26.6 +#
    26.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    26.8 +# has a -pre and a -post target defined where you can add customized code.
    26.9 +#
   26.10 +# This makefile implements configuration specific macros and targets.
   26.11 +
   26.12 +
   26.13 +# Environment
   26.14 +MKDIR=mkdir
   26.15 +CP=cp
   26.16 +GREP=grep
   26.17 +NM=nm
   26.18 +CCADMIN=CCadmin
   26.19 +RANLIB=ranlib
   26.20 +CC=gcc
   26.21 +CCC=gcc-4.6
   26.22 +CXX=gcc-4.6
   26.23 +FC=gfortran
   26.24 +AS=as
   26.25 +
   26.26 +# Macros
   26.27 +CND_PLATFORM=GNU-Linux-x86
   26.28 +CND_CONF=Debug
   26.29 +CND_DISTDIR=dist
   26.30 +CND_BUILDDIR=build
   26.31 +
   26.32 +# Include project Makefile
   26.33 +include Makefile
   26.34 +
   26.35 +# Object Directory
   26.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
   26.37 +
   26.38 +# Object Files
   26.39 +OBJECTFILES= \
   26.40 +	${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o \
   26.41 +	${OBJECTDIR}/_ext/1472/ParamBag.o
   26.42 +
   26.43 +
   26.44 +# C Compiler Flags
   26.45 +CFLAGS=-fPIC
   26.46 +
   26.47 +# CC Compiler Flags
   26.48 +CCFLAGS=
   26.49 +CXXFLAGS=
   26.50 +
   26.51 +# Fortran Compiler Flags
   26.52 +FFLAGS=
   26.53 +
   26.54 +# Assembler Flags
   26.55 +ASFLAGS=
   26.56 +
   26.57 +# Link Libraries and Options
   26.58 +LDLIBSOPTIONS=
   26.59 +
   26.60 +# Build Targets
   26.61 +.build-conf: ${BUILD_SUBPROJECTS}
   26.62 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   26.63 +
   26.64 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a: ${OBJECTFILES}
   26.65 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
   26.66 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   26.67 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a ${OBJECTFILES} 
   26.68 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   26.69 +
   26.70 +${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o: ../ReadParamsFromFile.c 
   26.71 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   26.72 +	${RM} $@.d
   26.73 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o ../ReadParamsFromFile.c
   26.74 +
   26.75 +${OBJECTDIR}/_ext/1472/ParamBag.o: ../ParamBag.c 
   26.76 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   26.77 +	${RM} $@.d
   26.78 +	$(COMPILE.c) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ParamBag.o ../ParamBag.c
   26.79 +
   26.80 +# Subprojects
   26.81 +.build-subprojects:
   26.82 +
   26.83 +# Clean Targets
   26.84 +.clean-conf: ${CLEAN_SUBPROJECTS}
   26.85 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
   26.86 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   26.87 +
   26.88 +# Subprojects
   26.89 +.clean-subprojects:
   26.90 +
   26.91 +# Enable dependency checking
   26.92 +.dep.inc: .depcheck-impl
   26.93 +
   26.94 +include .dep.inc
    27.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    27.2 +++ b/nb__prparam_pic/nbproject/Makefile-Release.mk	Fri Feb 14 07:49:50 2014 -0800
    27.3 @@ -0,0 +1,91 @@
    27.4 +#
    27.5 +# Generated Makefile - do not edit!
    27.6 +#
    27.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    27.8 +# has a -pre and a -post target defined where you can add customized code.
    27.9 +#
   27.10 +# This makefile implements configuration specific macros and targets.
   27.11 +
   27.12 +
   27.13 +# Environment
   27.14 +MKDIR=mkdir
   27.15 +CP=cp
   27.16 +GREP=grep
   27.17 +NM=nm
   27.18 +CCADMIN=CCadmin
   27.19 +RANLIB=ranlib
   27.20 +CC=gcc
   27.21 +CCC=gcc-4.6
   27.22 +CXX=gcc-4.6
   27.23 +FC=gfortran
   27.24 +AS=as
   27.25 +
   27.26 +# Macros
   27.27 +CND_PLATFORM=GNU-Linux-x86
   27.28 +CND_CONF=Release
   27.29 +CND_DISTDIR=dist
   27.30 +CND_BUILDDIR=build
   27.31 +
   27.32 +# Include project Makefile
   27.33 +include Makefile
   27.34 +
   27.35 +# Object Directory
   27.36 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
   27.37 +
   27.38 +# Object Files
   27.39 +OBJECTFILES= \
   27.40 +	${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o \
   27.41 +	${OBJECTDIR}/_ext/1472/ParamBag.o
   27.42 +
   27.43 +
   27.44 +# C Compiler Flags
   27.45 +CFLAGS=
   27.46 +
   27.47 +# CC Compiler Flags
   27.48 +CCFLAGS=
   27.49 +CXXFLAGS=
   27.50 +
   27.51 +# Fortran Compiler Flags
   27.52 +FFLAGS=
   27.53 +
   27.54 +# Assembler Flags
   27.55 +ASFLAGS=
   27.56 +
   27.57 +# Link Libraries and Options
   27.58 +LDLIBSOPTIONS=
   27.59 +
   27.60 +# Build Targets
   27.61 +.build-conf: ${BUILD_SUBPROJECTS}
   27.62 +	"${MAKE}"  -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   27.63 +
   27.64 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a: ${OBJECTFILES}
   27.65 +	${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
   27.66 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   27.67 +	${AR} -rv ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a ${OBJECTFILES} 
   27.68 +	$(RANLIB) ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   27.69 +
   27.70 +${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o: ../ReadParamsFromFile.c 
   27.71 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   27.72 +	${RM} $@.d
   27.73 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ReadParamsFromFile.o ../ReadParamsFromFile.c
   27.74 +
   27.75 +${OBJECTDIR}/_ext/1472/ParamBag.o: ../ParamBag.c 
   27.76 +	${MKDIR} -p ${OBJECTDIR}/_ext/1472
   27.77 +	${RM} $@.d
   27.78 +	$(COMPILE.c) -O2 -MMD -MP -MF $@.d -o ${OBJECTDIR}/_ext/1472/ParamBag.o ../ParamBag.c
   27.79 +
   27.80 +# Subprojects
   27.81 +.build-subprojects:
   27.82 +
   27.83 +# Clean Targets
   27.84 +.clean-conf: ${CLEAN_SUBPROJECTS}
   27.85 +	${RM} -r ${CND_BUILDDIR}/${CND_CONF}
   27.86 +	${RM} ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   27.87 +
   27.88 +# Subprojects
   27.89 +.clean-subprojects:
   27.90 +
   27.91 +# Enable dependency checking
   27.92 +.dep.inc: .depcheck-impl
   27.93 +
   27.94 +include .dep.inc
    28.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    28.2 +++ b/nb__prparam_pic/nbproject/Makefile-impl.mk	Fri Feb 14 07:49:50 2014 -0800
    28.3 @@ -0,0 +1,133 @@
    28.4 +# 
    28.5 +# Generated Makefile - do not edit! 
    28.6 +# 
    28.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
    28.8 +# has a pre- and a post- target defined where you can add customization code.
    28.9 +#
   28.10 +# This makefile implements macros and targets common to all configurations.
   28.11 +#
   28.12 +# NOCDDL
   28.13 +
   28.14 +
   28.15 +# Building and Cleaning subprojects are done by default, but can be controlled with the SUB
   28.16 +# macro. If SUB=no, subprojects will not be built or cleaned. The following macro
   28.17 +# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf
   28.18 +# and .clean-reqprojects-conf unless SUB has the value 'no'
   28.19 +SUB_no=NO
   28.20 +SUBPROJECTS=${SUB_${SUB}}
   28.21 +BUILD_SUBPROJECTS_=.build-subprojects
   28.22 +BUILD_SUBPROJECTS_NO=
   28.23 +BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}
   28.24 +CLEAN_SUBPROJECTS_=.clean-subprojects
   28.25 +CLEAN_SUBPROJECTS_NO=
   28.26 +CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}
   28.27 +
   28.28 +
   28.29 +# Project Name
   28.30 +PROJECTNAME=prparam_pic
   28.31 +
   28.32 +# Active Configuration
   28.33 +DEFAULTCONF=Debug
   28.34 +CONF=${DEFAULTCONF}
   28.35 +
   28.36 +# All Configurations
   28.37 +ALLCONFS=Debug Release 
   28.38 +
   28.39 +
   28.40 +# build
   28.41 +.build-impl: .build-pre .validate-impl .depcheck-impl
   28.42 +	@#echo "=> Running $@... Configuration=$(CONF)"
   28.43 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf
   28.44 +
   28.45 +
   28.46 +# clean
   28.47 +.clean-impl: .clean-pre .validate-impl .depcheck-impl
   28.48 +	@#echo "=> Running $@... Configuration=$(CONF)"
   28.49 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf
   28.50 +
   28.51 +
   28.52 +# clobber 
   28.53 +.clobber-impl: .clobber-pre .depcheck-impl
   28.54 +	@#echo "=> Running $@..."
   28.55 +	for CONF in ${ALLCONFS}; \
   28.56 +	do \
   28.57 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf; \
   28.58 +	done
   28.59 +
   28.60 +# all 
   28.61 +.all-impl: .all-pre .depcheck-impl
   28.62 +	@#echo "=> Running $@..."
   28.63 +	for CONF in ${ALLCONFS}; \
   28.64 +	do \
   28.65 +	    "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf; \
   28.66 +	done
   28.67 +
   28.68 +# build tests
   28.69 +.build-tests-impl: .build-impl .build-tests-pre
   28.70 +	@#echo "=> Running $@... Configuration=$(CONF)"
   28.71 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-tests-conf
   28.72 +
   28.73 +# run tests
   28.74 +.test-impl: .build-tests-impl .test-pre
   28.75 +	@#echo "=> Running $@... Configuration=$(CONF)"
   28.76 +	"${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .test-conf
   28.77 +
   28.78 +# dependency checking support
   28.79 +.depcheck-impl:
   28.80 +	@echo "# This code depends on make tool being used" >.dep.inc
   28.81 +	@if [ -n "${MAKE_VERSION}" ]; then \
   28.82 +	    echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES}))" >>.dep.inc; \
   28.83 +	    echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \
   28.84 +	    echo "include \$${DEPFILES}" >>.dep.inc; \
   28.85 +	    echo "endif" >>.dep.inc; \
   28.86 +	else \
   28.87 +	    echo ".KEEP_STATE:" >>.dep.inc; \
   28.88 +	    echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \
   28.89 +	fi
   28.90 +
   28.91 +# configuration validation
   28.92 +.validate-impl:
   28.93 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
   28.94 +	then \
   28.95 +	    echo ""; \
   28.96 +	    echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \
   28.97 +	    echo "See 'make help' for details."; \
   28.98 +	    echo "Current directory: " `pwd`; \
   28.99 +	    echo ""; \
  28.100 +	fi
  28.101 +	@if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
  28.102 +	then \
  28.103 +	    exit 1; \
  28.104 +	fi
  28.105 +
  28.106 +
  28.107 +# help
  28.108 +.help-impl: .help-pre
  28.109 +	@echo "This makefile supports the following configurations:"
  28.110 +	@echo "    ${ALLCONFS}"
  28.111 +	@echo ""
  28.112 +	@echo "and the following targets:"
  28.113 +	@echo "    build  (default target)"
  28.114 +	@echo "    clean"
  28.115 +	@echo "    clobber"
  28.116 +	@echo "    all"
  28.117 +	@echo "    help"
  28.118 +	@echo ""
  28.119 +	@echo "Makefile Usage:"
  28.120 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] build"
  28.121 +	@echo "    make [CONF=<CONFIGURATION>] [SUB=no] clean"
  28.122 +	@echo "    make [SUB=no] clobber"
  28.123 +	@echo "    make [SUB=no] all"
  28.124 +	@echo "    make help"
  28.125 +	@echo ""
  28.126 +	@echo "Target 'build' will build a specific configuration and, unless 'SUB=no',"
  28.127 +	@echo "    also build subprojects."
  28.128 +	@echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no',"
  28.129 +	@echo "    also clean subprojects."
  28.130 +	@echo "Target 'clobber' will remove all built files from all configurations and,"
  28.131 +	@echo "    unless 'SUB=no', also from subprojects."
  28.132 +	@echo "Target 'all' will will build all configurations and, unless 'SUB=no',"
  28.133 +	@echo "    also build subprojects."
  28.134 +	@echo "Target 'help' prints this message."
  28.135 +	@echo ""
  28.136 +
    29.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    29.2 +++ b/nb__prparam_pic/nbproject/Makefile-variables.mk	Fri Feb 14 07:49:50 2014 -0800
    29.3 @@ -0,0 +1,35 @@
    29.4 +#
    29.5 +# Generated - do not edit!
    29.6 +#
    29.7 +# NOCDDL
    29.8 +#
    29.9 +CND_BASEDIR=`pwd`
   29.10 +CND_BUILDDIR=build
   29.11 +CND_DISTDIR=dist
   29.12 +# Debug configuration
   29.13 +CND_PLATFORM_Debug=GNU-Linux-x86
   29.14 +CND_ARTIFACT_DIR_Debug=dist/Debug/GNU-Linux-x86
   29.15 +CND_ARTIFACT_NAME_Debug=libprparam_pic.a
   29.16 +CND_ARTIFACT_PATH_Debug=dist/Debug/GNU-Linux-x86/libprparam_pic.a
   29.17 +CND_PACKAGE_DIR_Debug=dist/Debug/GNU-Linux-x86/package
   29.18 +CND_PACKAGE_NAME_Debug=prparampic.tar
   29.19 +CND_PACKAGE_PATH_Debug=dist/Debug/GNU-Linux-x86/package/prparampic.tar
   29.20 +# Release configuration
   29.21 +CND_PLATFORM_Release=GNU-Linux-x86
   29.22 +CND_ARTIFACT_DIR_Release=dist/Release/GNU-Linux-x86
   29.23 +CND_ARTIFACT_NAME_Release=libprparam_pic.a
   29.24 +CND_ARTIFACT_PATH_Release=dist/Release/GNU-Linux-x86/libprparam_pic.a
   29.25 +CND_PACKAGE_DIR_Release=dist/Release/GNU-Linux-x86/package
   29.26 +CND_PACKAGE_NAME_Release=prparampic.tar
   29.27 +CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux-x86/package/prparampic.tar
   29.28 +#
   29.29 +# include compiler specific variables
   29.30 +#
   29.31 +# dmake command
   29.32 +ROOT:sh = test -f nbproject/private/Makefile-variables.mk || \
   29.33 +	(mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk)
   29.34 +#
   29.35 +# gmake command
   29.36 +.PHONY: $(shell test -f nbproject/private/Makefile-variables.mk || (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk))
   29.37 +#
   29.38 +include nbproject/private/Makefile-variables.mk
    30.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    30.2 +++ b/nb__prparam_pic/nbproject/Package-Debug.bash	Fri Feb 14 07:49:50 2014 -0800
    30.3 @@ -0,0 +1,75 @@
    30.4 +#!/bin/bash -x
    30.5 +
    30.6 +#
    30.7 +# Generated - do not edit!
    30.8 +#
    30.9 +
   30.10 +# Macros
   30.11 +TOP=`pwd`
   30.12 +CND_PLATFORM=GNU-Linux-x86
   30.13 +CND_CONF=Debug
   30.14 +CND_DISTDIR=dist
   30.15 +CND_BUILDDIR=build
   30.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
   30.17 +TMPDIRNAME=tmp-packaging
   30.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   30.19 +OUTPUT_BASENAME=libprparam_pic.a
   30.20 +PACKAGE_TOP_DIR=prparampic/
   30.21 +
   30.22 +# Functions
   30.23 +function checkReturnCode
   30.24 +{
   30.25 +    rc=$?
   30.26 +    if [ $rc != 0 ]
   30.27 +    then
   30.28 +        exit $rc
   30.29 +    fi
   30.30 +}
   30.31 +function makeDirectory
   30.32 +# $1 directory path
   30.33 +# $2 permission (optional)
   30.34 +{
   30.35 +    mkdir -p "$1"
   30.36 +    checkReturnCode
   30.37 +    if [ "$2" != "" ]
   30.38 +    then
   30.39 +      chmod $2 "$1"
   30.40 +      checkReturnCode
   30.41 +    fi
   30.42 +}
   30.43 +function copyFileToTmpDir
   30.44 +# $1 from-file path
   30.45 +# $2 to-file path
   30.46 +# $3 permission
   30.47 +{
   30.48 +    cp "$1" "$2"
   30.49 +    checkReturnCode
   30.50 +    if [ "$3" != "" ]
   30.51 +    then
   30.52 +        chmod $3 "$2"
   30.53 +        checkReturnCode
   30.54 +    fi
   30.55 +}
   30.56 +
   30.57 +# Setup
   30.58 +cd "${TOP}"
   30.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
   30.60 +rm -rf ${NBTMPDIR}
   30.61 +mkdir -p ${NBTMPDIR}
   30.62 +
   30.63 +# Copy files and create directories and links
   30.64 +cd "${TOP}"
   30.65 +makeDirectory "${NBTMPDIR}/prparampic/lib"
   30.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
   30.67 +
   30.68 +
   30.69 +# Generate tar file
   30.70 +cd "${TOP}"
   30.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparampic.tar
   30.72 +cd ${NBTMPDIR}
   30.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparampic.tar *
   30.74 +checkReturnCode
   30.75 +
   30.76 +# Cleanup
   30.77 +cd "${TOP}"
   30.78 +rm -rf ${NBTMPDIR}
    31.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    31.2 +++ b/nb__prparam_pic/nbproject/Package-Release.bash	Fri Feb 14 07:49:50 2014 -0800
    31.3 @@ -0,0 +1,75 @@
    31.4 +#!/bin/bash -x
    31.5 +
    31.6 +#
    31.7 +# Generated - do not edit!
    31.8 +#
    31.9 +
   31.10 +# Macros
   31.11 +TOP=`pwd`
   31.12 +CND_PLATFORM=GNU-Linux-x86
   31.13 +CND_CONF=Release
   31.14 +CND_DISTDIR=dist
   31.15 +CND_BUILDDIR=build
   31.16 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
   31.17 +TMPDIRNAME=tmp-packaging
   31.18 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libprparam_pic.a
   31.19 +OUTPUT_BASENAME=libprparam_pic.a
   31.20 +PACKAGE_TOP_DIR=prparampic/
   31.21 +
   31.22 +# Functions
   31.23 +function checkReturnCode
   31.24 +{
   31.25 +    rc=$?
   31.26 +    if [ $rc != 0 ]
   31.27 +    then
   31.28 +        exit $rc
   31.29 +    fi
   31.30 +}
   31.31 +function makeDirectory
   31.32 +# $1 directory path
   31.33 +# $2 permission (optional)
   31.34 +{
   31.35 +    mkdir -p "$1"
   31.36 +    checkReturnCode
   31.37 +    if [ "$2" != "" ]
   31.38 +    then
   31.39 +      chmod $2 "$1"
   31.40 +      checkReturnCode
   31.41 +    fi
   31.42 +}
   31.43 +function copyFileToTmpDir
   31.44 +# $1 from-file path
   31.45 +# $2 to-file path
   31.46 +# $3 permission
   31.47 +{
   31.48 +    cp "$1" "$2"
   31.49 +    checkReturnCode
   31.50 +    if [ "$3" != "" ]
   31.51 +    then
   31.52 +        chmod $3 "$2"
   31.53 +        checkReturnCode
   31.54 +    fi
   31.55 +}
   31.56 +
   31.57 +# Setup
   31.58 +cd "${TOP}"
   31.59 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
   31.60 +rm -rf ${NBTMPDIR}
   31.61 +mkdir -p ${NBTMPDIR}
   31.62 +
   31.63 +# Copy files and create directories and links
   31.64 +cd "${TOP}"
   31.65 +makeDirectory "${NBTMPDIR}/prparampic/lib"
   31.66 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
   31.67 +
   31.68 +
   31.69 +# Generate tar file
   31.70 +cd "${TOP}"
   31.71 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparampic.tar
   31.72 +cd ${NBTMPDIR}
   31.73 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/prparampic.tar *
   31.74 +checkReturnCode
   31.75 +
   31.76 +# Cleanup
   31.77 +cd "${TOP}"
   31.78 +rm -rf ${NBTMPDIR}
    32.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    32.2 +++ b/nb__prparam_pic/nbproject/configurations.xml	Fri Feb 14 07:49:50 2014 -0800
    32.3 @@ -0,0 +1,69 @@
    32.4 +<?xml version="1.0" encoding="UTF-8"?>
    32.5 +<configurationDescriptor version="79">
    32.6 +  <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
    32.7 +    <logicalFolder name="HeaderFiles"
    32.8 +                   displayName="Header Files"
    32.9 +                   projectFiles="true">
   32.10 +    </logicalFolder>
   32.11 +    <logicalFolder name="ResourceFiles"
   32.12 +                   displayName="Resource Files"
   32.13 +                   projectFiles="true">
   32.14 +    </logicalFolder>
   32.15 +    <logicalFolder name="SourceFiles"
   32.16 +                   displayName="Source Files"
   32.17 +                   projectFiles="true">
   32.18 +      <itemPath>../ParamBag.c</itemPath>
   32.19 +      <itemPath>../ReadParamsFromFile.c</itemPath>
   32.20 +      <itemPath>../prparam.h</itemPath>
   32.21 +    </logicalFolder>
   32.22 +    <logicalFolder name="TestFiles"
   32.23 +                   displayName="Test Files"
   32.24 +                   projectFiles="false"
   32.25 +                   kind="TEST_LOGICAL_FOLDER">
   32.26 +    </logicalFolder>
   32.27 +    <logicalFolder name="ExternalFiles"
   32.28 +                   displayName="Important Files"
   32.29 +                   projectFiles="false"
   32.30 +                   kind="IMPORTANT_FILES_FOLDER">
   32.31 +      <itemPath>Makefile</itemPath>
   32.32 +    </logicalFolder>
   32.33 +  </logicalFolder>
   32.34 +  <projectmakefile>Makefile</projectmakefile>
   32.35 +  <confs>
   32.36 +    <conf name="Debug" type="3">
   32.37 +      <toolsSet>
   32.38 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
   32.39 +        <compilerSet>default</compilerSet>
   32.40 +      </toolsSet>
   32.41 +      <compileType>
   32.42 +        <cTool>
   32.43 +          <commandLine>-fPIC</commandLine>
   32.44 +        </cTool>
   32.45 +        <archiverTool>
   32.46 +        </archiverTool>
   32.47 +      </compileType>
   32.48 +    </conf>
   32.49 +    <conf name="Release" type="3">
   32.50 +      <toolsSet>
   32.51 +        <remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
   32.52 +        <compilerSet>default</compilerSet>
   32.53 +      </toolsSet>
   32.54 +      <compileType>
   32.55 +        <cTool>
   32.56 +          <developmentMode>5</developmentMode>
   32.57 +        </cTool>
   32.58 +        <ccTool>
   32.59 +          <developmentMode>5</developmentMode>
   32.60 +        </ccTool>
   32.61 +        <fortranCompilerTool>
   32.62 +          <developmentMode>5</developmentMode>
   32.63 +        </fortranCompilerTool>
   32.64 +        <asmTool>
   32.65 +          <developmentMode>5</developmentMode>
   32.66 +        </asmTool>
   32.67 +        <archiverTool>
   32.68 +        </archiverTool>
   32.69 +      </compileType>
   32.70 +    </conf>
   32.71 +  </confs>
   32.72 +</configurationDescriptor>
    33.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    33.2 +++ b/nb__prparam_pic/nbproject/private/Makefile-variables.mk	Fri Feb 14 07:49:50 2014 -0800
    33.3 @@ -0,0 +1,7 @@
    33.4 +#
    33.5 +# Generated - do not edit!
    33.6 +#
    33.7 +# NOCDDL
    33.8 +#
    33.9 +# Debug configuration
   33.10 +# Release configuration
    34.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    34.2 +++ b/nb__prparam_pic/nbproject/private/configurations.xml	Fri Feb 14 07:49:50 2014 -0800
    34.3 @@ -0,0 +1,78 @@
    34.4 +<?xml version="1.0" encoding="UTF-8"?>
    34.5 +<configurationDescriptor version="79">
    34.6 +  <projectmakefile>Makefile</projectmakefile>
    34.7 +  <confs>
    34.8 +    <conf name="Debug" type="3">
    34.9 +      <toolsSet>
   34.10 +        <developmentServer>localhost</developmentServer>
   34.11 +        <platform>2</platform>
   34.12 +      </toolsSet>
   34.13 +      <dbx_gdbdebugger version="1">
   34.14 +        <gdb_pathmaps>
   34.15 +        </gdb_pathmaps>
   34.16 +        <gdb_interceptlist>
   34.17 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   34.18 +        </gdb_interceptlist>
   34.19 +        <gdb_options>
   34.20 +          <DebugOptions>
   34.21 +          </DebugOptions>
   34.22 +        </gdb_options>
   34.23 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   34.24 +      </dbx_gdbdebugger>
   34.25 +      <gizmo_options version="3">
   34.26 +        <configurationname>GizmoSimple</configurationname>
   34.27 +      </gizmo_options>
   34.28 +      <nativedebugger version="1">
   34.29 +        <engine>gdb</engine>
   34.30 +      </nativedebugger>
   34.31 +      <runprofile version="9">
   34.32 +        <runcommandpicklist>
   34.33 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   34.34 +        </runcommandpicklist>
   34.35 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   34.36 +        <rundir></rundir>
   34.37 +        <buildfirst>true</buildfirst>
   34.38 +        <terminal-type>0</terminal-type>
   34.39 +        <remove-instrumentation>0</remove-instrumentation>
   34.40 +        <environment>
   34.41 +        </environment>
   34.42 +      </runprofile>
   34.43 +    </conf>
   34.44 +    <conf name="Release" type="3">
   34.45 +      <toolsSet>
   34.46 +        <developmentServer>localhost</developmentServer>
   34.47 +        <platform>2</platform>
   34.48 +      </toolsSet>
   34.49 +      <dbx_gdbdebugger version="1">
   34.50 +        <gdb_pathmaps>
   34.51 +        </gdb_pathmaps>
   34.52 +        <gdb_interceptlist>
   34.53 +          <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/>
   34.54 +        </gdb_interceptlist>
   34.55 +        <gdb_options>
   34.56 +          <DebugOptions>
   34.57 +          </DebugOptions>
   34.58 +        </gdb_options>
   34.59 +        <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/>
   34.60 +      </dbx_gdbdebugger>
   34.61 +      <gizmo_options version="3">
   34.62 +        <configurationname>GizmoSimple</configurationname>
   34.63 +      </gizmo_options>
   34.64 +      <nativedebugger version="1">
   34.65 +        <engine>gdb</engine>
   34.66 +      </nativedebugger>
   34.67 +      <runprofile version="9">
   34.68 +        <runcommandpicklist>
   34.69 +          <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem>
   34.70 +        </runcommandpicklist>
   34.71 +        <runcommand>"${OUTPUT_PATH}"</runcommand>
   34.72 +        <rundir></rundir>
   34.73 +        <buildfirst>true</buildfirst>
   34.74 +        <terminal-type>0</terminal-type>
   34.75 +        <remove-instrumentation>0</remove-instrumentation>
   34.76 +        <environment>
   34.77 +        </environment>
   34.78 +      </runprofile>
   34.79 +    </conf>
   34.80 +  </confs>
   34.81 +</configurationDescriptor>
    35.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    35.2 +++ b/nb__prparam_pic/nbproject/private/private.xml	Fri Feb 14 07:49:50 2014 -0800
    35.3 @@ -0,0 +1,7 @@
    35.4 +<?xml version="1.0" encoding="UTF-8"?>
    35.5 +<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
    35.6 +    <data xmlns="http://www.netbeans.org/ns/make-project-private/1">
    35.7 +        <activeConfTypeElem>3</activeConfTypeElem>
    35.8 +        <activeConfIndexElem>0</activeConfIndexElem>
    35.9 +    </data>
   35.10 +</project-private>
    36.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    36.2 +++ b/nb__prparam_pic/nbproject/project.xml	Fri Feb 14 07:49:50 2014 -0800
    36.3 @@ -0,0 +1,25 @@
    36.4 +<?xml version="1.0" encoding="UTF-8"?>
    36.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
    36.6 +    <type>org.netbeans.modules.cnd.makeproject</type>
    36.7 +    <configuration>
    36.8 +        <data xmlns="http://www.netbeans.org/ns/make-project/1">
    36.9 +            <name>prparam_pic</name>
   36.10 +            <c-extensions>c</c-extensions>
   36.11 +            <cpp-extensions/>
   36.12 +            <header-extensions>h</header-extensions>
   36.13 +            <sourceEncoding>UTF-8</sourceEncoding>
   36.14 +            <make-dep-projects/>
   36.15 +            <sourceRootList/>
   36.16 +            <confList>
   36.17 +                <confElem>
   36.18 +                    <name>Debug</name>
   36.19 +                    <type>3</type>
   36.20 +                </confElem>
   36.21 +                <confElem>
   36.22 +                    <name>Release</name>
   36.23 +                    <type>3</type>
   36.24 +                </confElem>
   36.25 +            </confList>
   36.26 +        </data>
   36.27 +    </configuration>
   36.28 +</project>