
Mon Dec 18 15:31:16  2000  Earnie Boyd  <earnie_boyd@yahoo.com

	* Makefile.in:(autoload.o) Add target to specify -fno-inline-functions
	(exceptions.o) Ditto.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/Makefile.in,v
retrieving revision 1.48
diff -u -3 -r1.48 Makefile.in
--- Makefile.in	2000/12/15 22:25:51	1.48
+++ Makefile.in	2000/12/18 20:37:23
@@ -194,6 +194,23 @@
 
 dll_ofiles: $(DLL_OFILES)
 
+autoload.o: autoload.cc
+ifdef VERBOSE
+	$(COMPILE_CXX) -o $(@D)/$(*F)$o $< -fno-inline-functions
+else
+	@echo $(CXX) $c $(CXXFLAGS) ... $(*F).cc -fno-inline-functions
+	@$(COMPILE_CXX) -o $(@D)/$(*F)$o $< -fno-inline-functions
+endif
+
+exceptions.o: exceptions.cc
+ifdef VERBOSE
+	$(COMPILE_CXX) -o $(@D)/$(*F)$o $< -fno-inline-functions
+else
+	@echo $(CXX) $c $(CXXFLAGS) ... $(*F).cc -fno-inline-functions
+	@$(COMPILE_CXX) -o $(@D)/$(*F)$o $< -fno-inline-functions
+endif
+
+
 $(LIBGMON_A): $(GMON_OFILES) $(GMON_START)
 	$(AR) rcv $(LIBGMON_A) $(GMON_OFILES)
 
