pcs 97/09/12 00:33:03
Modified: src Configure Makefile.tmpl
Log:
As part of enabling OS abstractions, the OS specific Makefile is now
responsible for copying required header files to src/main, not Configure.
Also link with the OS abstraction libary as the last module.
Revision Changes Path
1.155 +0 -2 apachen/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apachen/src/Configure,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- Configure 1997/09/11 07:37:12 1.154
+++ Configure 1997/09/12 07:33:00 1.155
@@ -944,8 +944,6 @@
echo >> Makefile.config
echo "#### End of Configure created section ####">> Makefile.config
-cp $OSDIR/os.h main/os.h
-
####################################################################
# Use TestCompile to see if $(CC) is ANSI and as a "final" sanity
# check
1.64 +2 -2 apachen/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apachen/src/Makefile.tmpl,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- Makefile.tmpl 1997/09/06 23:38:40 1.63
+++ Makefile.tmpl 1997/09/12 07:33:01 1.64
@@ -11,8 +11,8 @@
OBJS= \
modules.o \
$(MODULES) \
- $(OSDIR)/libos.a \
- main/libmain.a
+ main/libmain.a \
+ $(OSDIR)/libos.a
.c.o:
$(CC) -c $(INCLUDES) $(CFLAGS) $(SPACER) $<