* Makefile.in (CFILES): Add $(srcdir)
authorEzra Peisach <epeisach@mit.edu>
Fri, 24 Oct 1997 13:13:47 +0000 (13:13 +0000)
committerEzra Peisach <epeisach@mit.edu>
Fri, 24 Oct 1997 13:13:47 +0000 (13:13 +0000)
Allows make depend to run,

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10249 dc483132-0cff-0310-8789-dd5450dbe970

src/util/pty/ChangeLog
src/util/pty/Makefile.in

index 5954edddc5b3cd5a0f5b6bb5f20767accb69f6d8..6c654ce5c82b709f70ce74f6f3b6ce7b32c34e17 100644 (file)
@@ -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
index 71f55b7101850bf03909b992d93263b812dd6892..9901136c393978f95c05a45792fce4b269b5fd3a 100644 (file)
@@ -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