Документ взят из кэша поисковой машины. Адрес оригинального документа : http://xmm.vilspa.esa.es/sas/6.0.0/doc/devel/externdevel.html
Дата изменения: Wed Aug 9 16:29:06 2000
Дата индексирования: Sat Dec 22 12:21:26 2007
Кодировка:
External SAS packages

External SAS packages 

Using external packages

It is possible to incorporate in the SAS software packages that are not part of the official SAS distribution. These we call 'external packages'. All that is needed is to set the environment variable SAS_PATH to point to all directories that contain SAS components, in the form of a colon-separated list. It is required that these additional component are structured as proper SAS extension, as explained in the following section.

Assume that a user wants to use the official SAS distribution in /usr/sas, local additions in /usr/local/sas, and his own additions in $HOME/sas. He will have to set the SAS_DIR and SAS_PATH environment variable and call the sas-setup script (preferably in a login script), e.g. (csh):

With this setup

Developing external packages

Packages can be developed outside the official SAS distribution. To develop packages outside the distribution: The simplest way to fill this with the proper content is to copy the structure of the SAS distribution. The Makefile in the toplevel directory should contain: packages/Makefile should contain: In the packages subdirectory one can develop tasks just as they are developed within the SAS distribution (see the task development documentation).  This results in packages that are placed in the subdirectory packages. The Makefiles in all subdirectories set the appropriate variables and includes $SAS_DIR/Make.include.

Doing a make in the toplevel directory (mysas) compiles the packages and creates symbolic links. After this the new code and data is available to the SAS.

To make your local SAS tree compatible with the main SAS one, the toplevel directory (e.g. mysas) should contain the subdirectories lib, bin, include, doc and config.

These conventions are automatically followed once the make file in the top directory (mysas) is created as indicated above.

Updated on: August 9, 2000