diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1999-02-28 21:35:05 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1999-02-28 21:35:05 +0000 |
commit | 086477d980d81313ad9cccf48babcb10fcd0fd74 (patch) | |
tree | 6e260efb33af0308870f3739af8ccd578ecdefc6 /gnu/usr.bin/cvs/emx | |
parent | 9fa21bec8f03defd6ea5bffa1a8310f3d7a9df65 (diff) |
Latest version from Cyclic
Diffstat (limited to 'gnu/usr.bin/cvs/emx')
-rw-r--r-- | gnu/usr.bin/cvs/emx/ChangeLog | 5 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/emx/Makefile.in | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/emx/ChangeLog b/gnu/usr.bin/cvs/emx/ChangeLog index b120ea8dc41..6a5f0184e30 100644 --- a/gnu/usr.bin/cvs/emx/ChangeLog +++ b/gnu/usr.bin/cvs/emx/ChangeLog @@ -1,3 +1,8 @@ +1998-08-24 Jim Kingdon <kingdon@harvey.cyclic.com> + + * Makefile.in (rcscmds.o): New rule, so we can supply -I for + diffrun.h. + 1998-04-09 Jim Kingdon <kingdon@harvey.cyclic.com> * filesubr.c (link_file): Remove; no longer used. diff --git a/gnu/usr.bin/cvs/emx/Makefile.in b/gnu/usr.bin/cvs/emx/Makefile.in index eff256490f5..f76368d1d5d 100644 --- a/gnu/usr.bin/cvs/emx/Makefile.in +++ b/gnu/usr.bin/cvs/emx/Makefile.in @@ -331,6 +331,9 @@ install-cvs: cvs.exe %.o: %.c gcc ${OBJ_CFLAGS} ${CFLAGS} -o $@ -c $*.c +${cvs_srcdir}/rcscmds.o: ${cvs_srcdir}/rcscmds.c ${top_srcdir}/diff/diffrun.h + gcc ${OBJ_CFLAGS} ${CFLAGS} -I${top_srcdir}/diff -o $@ -c $*.c + ${lib_dir}/libcvs.a: $(LIB_OBJECTS) $(AR) cr $@ $(LIB_OBJECTS) |