From: Ezra Peisach Date: Fri, 24 Oct 1997 13:13:47 +0000 (+0000) Subject: * Makefile.in (CFILES): Add $(srcdir) X-Git-Tag: krb5-1.1-beta1~976 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=aee8ba312c3b8046fad336c923413f31fe5ed96e;p=krb5.git * 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 --- 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 + + * Makefile.in (CFILES): Add $(srcdir). + Wed Oct 1 04:53:30 1997 Tom Yu * 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