/usr/share/cernlib/config/Project.tmpl is in cernlib-base-dev 20061220+dfsg3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | /* $Id: Project.tmpl,v 1.6 1997/02/28 10:35:59 gunter Exp $
*
* $Log: Project.tmpl,v $
* Revision 1.6 1997/02/28 10:35:59 gunter
* remove trailing / for CERN_...
*
* Revision 1.5 1996/11/13 13:28:56 cernlib
* Add CERN_SHLIBDIR
*
* Revision 1.4 1996/03/19 14:49:57 cernlib
* add CERN_BINDIR, CERN_LIBDIR initialisation
*
* Revision 1.3 1996/03/08 17:12:09 cernlib
* *** empty log message ***
*
* Revision 1.2 1995/12/21 11:32:15 cernlib
* Imake files end 1995
*
* Revision 1.1.1.1 1995/12/20 15:26:41 cernlib
* X11R6 config files unmodified
*
*
*/
/* CERNlib Project */
/* @(#) $(Header) */
#ifndef ConfigDir
#define ConfigDir $(CVSCOSRC)$/config
#endif
ifeq ($(strip $(CERN)),)
CERN=/cern
endif
ifeq ($(strip $(CERN_LEVEL)),)
CERN_LEVEL=new
endif
ifeq ($(strip $(CERN_LIBDIR)),)
CERN_LIBDIR=$(CERN)$/$(CERN_LEVEL)$/lib
endif
ifeq ($(strip $(CERN_SHLIBDIR)),)
CERN_SHLIBDIR=$(CERN)$/$(CERN_LEVEL)$/shlib
endif
ifeq ($(strip $(CERN_BINDIR)),)
CERN_BINDIR=$(CERN)$/$(CERN_LEVEL)$/bin
endif
|