# requirements file for package skel #------------- # # This file should contain all flavor dependent definitions to develop # and use the package. The definitions should be used in the Makefile # to make it flavor independent. This file will be interpreted by the # script packconf.csh (packman -c) to create the setup files setup.csh # and .csh. # #------------- use Vme v0 # # 'use' allows to define dependencies abong packages. This here means # that the package skel needs and sets up package Vme. You can also add # a pathname if the package is in another software tree for example: # use Wo v1 /kloe/soft/lal. # # ------------ set SKELCC "cc" \ HP-UX "cc -Aa -D_HPUX_SOURCE" \ HP-RT "ccrt -Aa -D_HPUX_SOURCE" \ LynxOS "gcc" # # 'set' defines flavor-dependent environment variables here SKELCC. # The first line is the default, the other lines are for the specific # flavor. 'set' will be translated into setenv for csh-type shells. # # ------------ alias skel "$SKELBIN/skel" # # ALIAS defines some aliases. #