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 /src/appl/simple | |
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
Diffstat (limited to 'src/appl/simple')
-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 |
4 files changed, 20 insertions, 0 deletions
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) |