# Environment MKDIR=mkdir CP=cp CCADMIN=CCadmin SUN_OS=SunOS MAC_OS=Darwin LINUX_OS=Linux # build build: .build-post # Add your pre 'build' code here... .build-pre: @echo "JAVA_HOME variable pointing to :" ${JAVA_HOME} @echo "OS type detected: "`uname` @case `uname` in \ "SunOS") DEFAULTCONF=Release ;;\ "Darwin") DEFAULTCONF=MacRelease ;;\ "Linux") DEFAULTCONF=Linux ;;\ *) echo "This operating system is not supported " ;;\ esac cd ../cxform-0.71/ && make so-c cd ../CXFormLib/ cp ../cxform-0.71/libcxform-c.so ./ .build-post: .build-impl # Add your post 'build' code here... # clean clean: .clean-post .clean-pre: rm libcxform-c.so cd ../cxform-0.71/ && make clean # Add your pre 'clean' code here... .clean-post: .clean-impl # Add your post 'clean' code here... # all all: .all-post .all-pre: # Add your pre 'all' code here... .all-post: .all-impl # Add your post 'all' code here... # include project implementation makefile include nbproject/Makefile-impl.mk # include project make variables include nbproject/Makefile-variables.mk