summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1997-10-24 13:13:47 +0000
committerEzra Peisach <epeisach@mit.edu>1997-10-24 13:13:47 +0000
commitaee8ba312c3b8046fad336c923413f31fe5ed96e (patch)
tree8836001e52616ba9879ca11aaef1db1459459f3b /src
parent9a1025717ce9948c239492aa03afb8b5f468a458 (diff)
* Makefile.in (CFILES): Add $(srcdir)
Allows make depend to run, git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10249 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/util/pty/ChangeLog4
-rw-r--r--src/util/pty/Makefile.in11
2 files changed, 11 insertions, 4 deletions
diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog
index 5954edddc..6c654ce5c 100644
--- a/src/util/pty/ChangeLog
+++ b/src/util/pty/ChangeLog
@@ -1,3 +1,7 @@
+Fri Oct 24 09:12:43 1997 Ezra Peisach <epeisach@mit.edu>
+
+ * Makefile.in (CFILES): Add $(srcdir).
+
Wed Oct 1 04:53:30 1997 Tom Yu <tlyu@mit.edu>
* configure.in: Default to a long rather than an int for a time_t
diff --git a/src/util/pty/Makefile.in b/src/util/pty/Makefile.in
index 71f55b710..9901136c3 100644
--- a/src/util/pty/Makefile.in
+++ b/src/util/pty/Makefile.in
@@ -21,11 +21,14 @@ LOCALINCLUDE=-I. -I$(srcdir)
FILES= Makefile cleanup.c getpty.c init_slave.c open_ctty.c open_slave.c update_utmp.c update_wtmp.c vhangup.c void_assoc.c pty_err.h pty_err.c\
logwtmp.c init.c
-CFILES=cleanup.c getpty.c init_slave.c open_ctty.c open_slave.c\
-update_utmp.c update_wtmp.c vhangup.c void_assoc.c pty_err.c logwtmp.c init.c
+CFILES=$(srcdir)/cleanup.c $(srcdir)/getpty.c $(srcdir)/init_slave.c \
+ $(srcdir)/open_ctty.c $(srcdir)/open_slave.c \
+ $(srcdir)/update_utmp.c $(srcdir)/update_wtmp.c $(srcdir)/vhangup.c \
+ $(srcdir)/void_assoc.c $(srcdir)/logwtmp.c \
+ $(srcdir)/init.c
-SRCS=pty_err.h $(CFILES)
+SRCS=pty_err.c $(CFILES)
DEPLIBS=
@@ -40,7 +43,7 @@ clean-unix::
$(RM) libpty.a $(BUILDTOP)/include/libpty.h pty_err.c pty_err.h
clean-unix:: clean-liblinks clean-libs clean-libobjs
-depend::
+depend:: pty_err.h
install:: libpty.h
$(INSTALL_DATA) $(srcdir)/libpty.h $(DESTDIR)$(KRB5_INCDIR)/libpty.h