more lower case changes for Makefile -> makefile Modified: branches/xmlbuildsystem/reactos/tools/Makefile Deleted: branches/xmlbuildsystem/reactos/tools/buildno/Makefile Added: branches/xmlbuildsystem/reactos/tools/buildno/makefile Modified: branches/xmlbuildsystem/reactos/tools/rmkdir.c _____
Modified: branches/xmlbuildsystem/reactos/tools/Makefile --- branches/xmlbuildsystem/reactos/tools/Makefile 2005-03-08 20:12:43 UTC (rev 13884) +++ branches/xmlbuildsystem/reactos/tools/Makefile 2005-03-08 20:19:07 UTC (rev 13885) @@ -51,11 +51,11 @@
-@$(rm) $(RSYM_TARGET) $(RSYM_OBJECTS) 2>$(NUL) clean: rsym_clean
-include tools/buildno/Makefile +include tools/buildno/makefile include tools/cdmake/makefile include tools/nci/makefile include tools/rbuild/makefile -include tools/unicode/Makefile +include tools/unicode/makefile include tools/wmc/makefile -include tools/wpp/Makefile +include tools/wpp/makefile include tools/wrc/makefile _____
Deleted: branches/xmlbuildsystem/reactos/tools/buildno/Makefile --- branches/xmlbuildsystem/reactos/tools/buildno/Makefile 2005-03-08 20:12:43 UTC (rev 13884) +++ branches/xmlbuildsystem/reactos/tools/buildno/Makefile 2005-03-08 20:19:07 UTC (rev 13885) @@ -1,32 +0,0 @@
-BUILDNO_BASE = tools$(SEP)buildno - -BUILDNO_TARGET = \ - $(ROS_INTERMEDIATE)$(BUILDNO_BASE)$(SEP)buildno$(EXEPOSTFIX) - -BUILDNO_SOURCES = \ - $(BUILDNO_BASE)$(SEP)buildno.cpp \ - $(BUILDNO_BASE)$(SEP)exception.cpp \ - $(BUILDNO_BASE)$(SEP)ssprintf.cpp \ - $(BUILDNO_BASE)$(SEP)XML.cpp - -BUILDNO_OBJECTS = \ - $(BUILDNO_SOURCES:.cpp=.o) - -BUILDNO_HOST_CFLAGS = -Iinclude/reactos -g -Werror -Wall - -BUILDNO_HOST_LFLAGS = -g - -$(BUILDNO_TARGET): $(BUILDNO_OBJECTS) - ${host_gpp} $(BUILDNO_OBJECTS) $(BUILDNO_HOST_CFLAGS) -o $(BUILDNO_TARGET) - -$(BUILDNO_OBJECTS): %.o : %.cpp include$(SEP)reactos$(SEP)version.h - ${host_gpp} $(BUILDNO_HOST_CFLAGS) -c $< -o $@ - -.PHONY: buildno_clean -buildno_clean: - -@$(rm) $(BUILDNO_TARGET) $(BUILDNO_OBJECTS) 2>$(NUL) - -BUILDNO_H = include$(SEP)reactos$(SEP)buildno.h - -$(BUILDNO_H): $(BUILDNO_TARGET) - $(EXEPREFIX)$(BUILDNO_TARGET) $(BUILDNO_H) _____
Copied: branches/xmlbuildsystem/reactos/tools/buildno/makefile (from rev 13883, branches/xmlbuildsystem/reactos/tools/buildno/Makefile) _____
Modified: branches/xmlbuildsystem/reactos/tools/rmkdir.c --- branches/xmlbuildsystem/reactos/tools/rmkdir.c 2005-03-08 20:12:43 UTC (rev 13884) +++ branches/xmlbuildsystem/reactos/tools/rmkdir.c 2005-03-08 20:19:07 UTC (rev 13885) @@ -13,9 +13,11 @@
#if defined(WIN32) #define DIR_SEPARATOR_CHAR '\' #define DIR_SEPARATOR_STRING "\" +#define DOS_PATHS #else #define DIR_SEPARATOR_CHAR '/' #define DIR_SEPARATOR_STRING "/" +#define UNIX_PATHS #endif
char* convert_path(char* origpath)