Commit b804f8e6 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

changed to use xcopy directly instead of creating a copy batch.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@521344 13f79535-47bb-0310-9956-ffa450edef68
parent be740ef7
Loading
Loading
Loading
Loading
+30 −35
Original line number Diff line number Diff line
@@ -363,16 +363,11 @@ endif
	-copy docs\conf\mime.types      $(INSTALL)\$(BASEDIR)\conf\mime.types
	-copy docs\conf\charset.conv    $(INSTALL)\$(BASEDIR)\conf\charset.conv
	-copy docs\cgi-examples\printenv $(INSTALL)\$(BASEDIR)\cgi-bin\printenv.pl
	@echo rem copying the docs directories > xc.bat
	@echo xcopy docs\error $(INSTALL)\$(BASEDIR)\error $(XCOPYSW) >> xc.bat
	@echo xcopy docs\docroot $(INSTALL)\$(BASEDIR)\htdocs $(XCOPYSW) >> xc.bat
	@echo xcopy docs\icons $(INSTALL)\$(BASEDIR)\icons $(XCOPYSW) >> xc.bat
	@echo xcopy docs\man $(INSTALL)\$(BASEDIR)\man $(XCOPYSW) >> xc.bat
	@echo xcopy docs\manual $(INSTALL)\$(BASEDIR)\manual $(XCOPYSW) >> xc.bat
	$(CMD) xc.bat
	$(DEL) xc.bat


	@xcopy $(XCOPYSW) docs\error $(INSTALL)\$(BASEDIR)\error
	@xcopy $(XCOPYSW) docs\docroot $(INSTALL)\$(BASEDIR)\htdocs
	@xcopy $(XCOPYSW) docs\icons $(INSTALL)\$(BASEDIR)\icons
	@xcopy $(XCOPYSW) docs\man $(INSTALL)\$(BASEDIR)\man
	@xcopy $(XCOPYSW) docs\manual $(INSTALL)\$(BASEDIR)\manual

installdev :: FORCE
	-copy $(subst /,\,$(AP_WORK))\include\*.h           $(INSTALL)\$(BASEDIR)\include\*.*
@@ -390,7 +385,6 @@ prebuild :: FORCE
	-copy $(AP_WORK)\server\$(OBJDIR)\*.nlm $(PREBUILD_INST)\*.*
	-copy $(AP_WORK)\srclib\pcre\$(basename $(OBJDIR))\*.nlm $(PREBUILD_INST)\*.*


#
# Any specialized rules here
#
@@ -406,3 +400,4 @@ vpath %.c os/netware:server/mpm/netware:srclib/pcre

include $(AP_WORK)\build\NWGNUtail.inc