From 703661876e77fa441877cd092922658722e30964 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Thu, 31 Oct 2002 19:32:01 +0000 Subject: [PATCH] I made a little readme to get people started and modified the nan_definitions.mk to setup NANBLENDERHOME and everything is under that directory. also add empty dirs for lib and obj. Try it out and feel free to make improvements. mein@cs.umn.edu --- readme.txt | 17 +++++++++++++++++ source/nan_definitions.mk | 6 +++--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 readme.txt diff --git a/readme.txt b/readme.txt new file mode 100644 index 00000000000..d67f32fd079 --- /dev/null +++ b/readme.txt @@ -0,0 +1,17 @@ +Welcome to the fun world of opensource. + +To help you get started do the following before starting: + +Assuming your using tcsh/csh do the following before compiling. +#Set this to wherever you have extracted the source. +setenv NANBLENDERHOME `pwd` +setenv MAKEFLAGS "-w -I$NANBLENDERHOME/source" + +set NANBLENDERHOME=`pwd` +export NANBLENDERHOME +set MAKEFLAGS="-w -I$NANBLENDERHOME/source" +export MAKEFLAGS + +Then edit source/nan_definitions.mk to fit your environment. + + diff --git a/source/nan_definitions.mk b/source/nan_definitions.mk index d084ce972f5..1a0726080a7 100644 --- a/source/nan_definitions.mk +++ b/source/nan_definitions.mk @@ -41,9 +41,9 @@ all debug:: $(error $(ERRTXT)) endif endif - export SRCHOME ?= $(HOME)/develop/source - export NAN_LIBDIR ?= $(HOME)/develop/lib - export NAN_OBJDIR ?= $(HOME)/obj + export SRCHOME ?= $(NANBLENDERHOME)/source + export NAN_LIBDIR ?= $(NANBLENDERHOME)/lib + export NAN_OBJDIR ?= $(NANBLENDERHOME)/obj export NAN_PYTHON ?= $(LCGDIR)/python export NAN_PYTHON_VERSION ?= 2.0 export NAN_OPENAL ?= $(LCGDIR)/openal