diff options
| author | Theodore Tso <tytso@mit.edu> | 1998-11-13 21:09:42 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1998-11-13 21:09:42 +0000 |
| commit | b144eab66fe487302900c0dbccb01be3794510fe (patch) | |
| tree | 9ebd1751dd837176da30a126def90397b0ac8db5 | |
| parent | e812d05c58837dbaa4cfc4b433929d0c18f279ba (diff) | |
| download | krb5-b144eab66fe487302900c0dbccb01be3794510fe.tar.gz krb5-b144eab66fe487302900c0dbccb01be3794510fe.tar.xz krb5-b144eab66fe487302900c0dbccb01be3794510fe.zip | |
Makefile.in: Set the myfulldir and mydir variables (which are relative
to buildtop and thisconfigdir, respectively.) Add a MY_SUBDIRS macro
set to '.' to indicate that there are no subdirectories to be
processed by the Makefile.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11031 dc483132-0cff-0310-8789-dd5450dbe970
| -rw-r--r-- | src/appl/sample/sclient/ChangeLog | 7 | ||||
| -rw-r--r-- | src/appl/sample/sclient/Makefile.in | 4 | ||||
| -rw-r--r-- | src/appl/sample/sserver/ChangeLog | 7 | ||||
| -rw-r--r-- | src/appl/sample/sserver/Makefile.in | 4 | ||||
| -rw-r--r-- | src/appl/simple/client/ChangeLog | 7 | ||||
| -rw-r--r-- | src/appl/simple/client/Makefile.in | 3 | ||||
| -rw-r--r-- | src/appl/simple/server/ChangeLog | 7 | ||||
| -rw-r--r-- | src/appl/simple/server/Makefile.in | 3 |
8 files changed, 42 insertions, 0 deletions
diff --git a/src/appl/sample/sclient/ChangeLog b/src/appl/sample/sclient/ChangeLog index 0f407cb11..39c66ced4 100644 --- a/src/appl/sample/sclient/ChangeLog +++ b/src/appl/sample/sclient/ChangeLog @@ -1,3 +1,10 @@ +1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * Makefile.in: Set the myfulldir and mydir variables (which are + relative to buildtop and thisconfigdir, respectively.) + Add a MY_SUBDIRS macro set to '.' to indicate that there + are no subdirectories to be processed by the Makefile. + Wed Feb 18 15:32:24 1998 Tom Yu <tlyu@mit.edu> * Makefile.in: Remove trailing slash from thisconfigdir. Fix up diff --git a/src/appl/sample/sclient/Makefile.in b/src/appl/sample/sclient/Makefile.in index 091a2b562..e8c50a7c5 100644 --- a/src/appl/sample/sclient/Makefile.in +++ b/src/appl/sample/sclient/Makefile.in @@ -1,4 +1,8 @@ thisconfigdir=./.. +myfulldir=appl/sample/sclient +mydir=sclient +MY_SUBDIRS=. + BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U) CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) PROG_LIBPATH=-L$(TOPLIBD) diff --git a/src/appl/sample/sserver/ChangeLog b/src/appl/sample/sserver/ChangeLog index 9973d04d6..0eb7468da 100644 --- a/src/appl/sample/sserver/ChangeLog +++ b/src/appl/sample/sserver/ChangeLog @@ -1,3 +1,10 @@ +1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * Makefile.in: Set the myfulldir and mydir variables (which are + relative to buildtop and thisconfigdir, respectively.) + Add a MY_SUBDIRS macro set to '.' to indicate that there + are no subdirectories to be processed by the Makefile. + 1998-05-06 Theodore Ts'o <tytso@rsts-11.mit.edu> * sserver.c (main): POSIX states that getopt returns -1 when it diff --git a/src/appl/sample/sserver/Makefile.in b/src/appl/sample/sserver/Makefile.in index 62c9e6118..00467b9b2 100644 --- a/src/appl/sample/sserver/Makefile.in +++ b/src/appl/sample/sserver/Makefile.in @@ -1,4 +1,8 @@ thisconfigdir=./.. +myfulldir=appl/sample/sserver +mydir=sserver +MY_SUBDIRS=. + BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U) CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) PROG_LIBPATH=-L$(TOPLIBD) diff --git a/src/appl/simple/client/ChangeLog b/src/appl/simple/client/ChangeLog index 3065caa8a..8074ea955 100644 --- a/src/appl/simple/client/ChangeLog +++ b/src/appl/simple/client/ChangeLog @@ -1,3 +1,10 @@ +1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * Makefile.in: Set the myfulldir and mydir variables (which are + relative to buildtop and thisconfigdir, respectively.) + Add a MY_SUBDIRS macro set to '.' to indicate that there + are no subdirectories to be processed by the Makefile. + 1998-05-06 Theodore Ts'o <tytso@rsts-11.mit.edu> * sim_client.c (main): POSIX states that getopt returns -1 when it diff --git a/src/appl/simple/client/Makefile.in b/src/appl/simple/client/Makefile.in index ad9f9f4ba..178afc914 100644 --- a/src/appl/simple/client/Makefile.in +++ b/src/appl/simple/client/Makefile.in @@ -1,4 +1,7 @@ thisconfigdir=./.. +myfulldir=appl/simple/client +mydir=client +MY_SUBDIRS=. BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U) CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) PROG_LIBPATH=-L$(TOPLIBD) diff --git a/src/appl/simple/server/ChangeLog b/src/appl/simple/server/ChangeLog index 68e9d4bae..88defa589 100644 --- a/src/appl/simple/server/ChangeLog +++ b/src/appl/simple/server/ChangeLog @@ -1,3 +1,10 @@ +1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * Makefile.in: Set the myfulldir and mydir variables (which are + relative to buildtop and thisconfigdir, respectively.) + Add a MY_SUBDIRS macro set to '.' to indicate that there + are no subdirectories to be processed by the Makefile. + 1998-05-06 Theodore Ts'o <tytso@rsts-11.mit.edu> * sim_server.c (argv): POSIX states that getopt returns -1 when it diff --git a/src/appl/simple/server/Makefile.in b/src/appl/simple/server/Makefile.in index 4aa40dc73..4c526b8a6 100644 --- a/src/appl/simple/server/Makefile.in +++ b/src/appl/simple/server/Makefile.in @@ -1,4 +1,7 @@ thisconfigdir=./.. +myfulldir=appl/simple/server +mydir=server +MY_SUBDIRS=. BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U) CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) |
