diff options
author | Kenneth G Raeburn <raeburn@mit.edu> | 1991-03-21 07:15:28 +0000 |
---|---|---|
committer | Kenneth G Raeburn <raeburn@mit.edu> | 1991-03-21 07:15:28 +0000 |
commit | 11e855ae60ad49cd60c786ba409f53b53b318774 (patch) | |
tree | 8535cc7bbce9bdbcc2e4c81aff34a733c3ccd089 | |
parent | 5203e42628554ebe4732b40aca7ef3b4a7f4b7f0 (diff) |
If LOCAL_LIBS, link to local copies of com_err.h and ss header files.
-rw-r--r-- | h/Imakefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/h/Imakefile b/h/Imakefile index 1caabfb..9eedaf1 100644 --- a/h/Imakefile +++ b/h/Imakefile @@ -1,11 +1,11 @@ -/**/# Copyright 1988 Massachusetts Institute of Technology. +/**/# Copyright 1988,1991 Massachusetts Institute of Technology. /**/# /**/# For copying and distribution information, see the file /**/# "mit-copyright.h". /**/# /**/# $Source$ /**/# $Author$ -/**/# $Header$ +/**/# $Zephyr: Imakefile,v 1.1 89/03/23 17:21:13 jtkohl Exp $ /**/# #define have_subdirs #define no_curdir_lint @@ -14,3 +14,12 @@ SRCDIR= ${SRCTOP}/include CODE= Imakefile SUBDIRS= zephyr + +#ifdef LOCAL_LIBS +all:: com_err.h ss +depend:: com_err.h ss +com_err.h: + ln -s ../et/lib/com_err.h . +ss: + ln -s ../ss/lib ss +#endif |