marc 97/11/13 14:25:46
Modified: src Makefile.tmpl .cvsignore
Added: src buildmark.c
Log:
Fix up buildmark.c file so it doesn't need a shell command run
to create it. This makes it possible to modify the NT makefile
(not done in this commit) to make it work properly.
Reviewed by: Ken Coar, Dean Gaudet, Martin Kraemer
Revision Changes Path
1.71 +0 -2 apachen/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apachen/src/Makefile.tmpl,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- Makefile.tmpl 1997/11/05 12:48:13 1.70
+++ Makefile.tmpl 1997/11/13 22:25:44 1.71
@@ -27,8 +27,6 @@
@false
$(TARGET): subdirs modules.o
- rm -f buildmark.c
- echo 'const char SERVER_BUILT[] = "'`date`'";' > buildmark.c
$(CC) -c $(CFLAGS) buildmark.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET) buildmark.o $(OBJS) $(REGLIB)
$(LIBS)
1.11 +0 -1 apachen/src/.cvsignore
Index: .cvsignore
===================================================================
RCS file: /export/home/cvs/apachen/src/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- .cvsignore 1997/11/05 12:48:10 1.10
+++ .cvsignore 1997/11/13 22:25:45 1.11
@@ -6,7 +6,6 @@
*.plg
ApacheD
ApacheR
-buildmark.c
Configuration
Configuration.default
Configuration.lint
1.1 apachen/src/buildmark.c
Index: buildmark.c
===================================================================
#if defined(__DATE__) && defined(__TIME__)
const char SERVER_BUILT[] = __DATE__ " " __TIME__;
#else
const char SERVER_BUILT[] = "unknown";
#endif