summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-12-29 21:37:22 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-12-29 21:37:22 +0000
commitf5410351c360e484a7831650458724f2cc084688 (patch)
treef08351aba5cb8011102339c40369cc92a6db422b
parentbeac3b434110265fe46b798ed3be5cb01e4530ee (diff)
- (bal) Add in '.c.o' section to Makefile.in to address make programs that
don't honor CPPFLAGS by default. Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in3
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 94412d5f0..fc9f9a021 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@
6 - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c 6 - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
7 - (bal) if no MAXHOSTNAMELEN is defined. Default to 64 character defination. 7 - (bal) if no MAXHOSTNAMELEN is defined. Default to 64 character defination.
8 Suggested by Christian Kurz <shorty@debain.org> 8 Suggested by Christian Kurz <shorty@debain.org>
9 - (bal) Add in '.c.o' section to Makefile.in to address make programs that
10 don't honor CPPFLAGS by default. Suggested by Lutz Jaenicke
11 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
9 12
1020001229 1320001229
11 - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian 14 - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
diff --git a/Makefile.in b/Makefile.in
index 05ff36eff..e05ddd1f3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -74,6 +74,9 @@ $(SSHOBJS): config.h
74$(SSHDOBJS): config.h 74$(SSHDOBJS): config.h
75$(LIBOPENBSD_COMPAT_OBJS): config.h 75$(LIBOPENBSD_COMPAT_OBJS): config.h
76 76
77.c.o:
78 $(CC) $(CFLAGS) $(CPPFLAGS) -o $<
79
77libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS) 80libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
78 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS) 81 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
79 $(RANLIB) $@ 82 $(RANLIB) $@