diff --git a/reactos/CMakeLists.txt b/reactos/CMakeLists.txt
index b0b4d89648e..0c6790f0fb8 100644
--- a/reactos/CMakeLists.txt
+++ b/reactos/CMakeLists.txt
@@ -61,7 +61,7 @@ if(NOT CMAKE_CROSSCOMPILING)
add_subdirectory(lib)
if(NOT MSVC)
- export(TARGETS widl wrc gendib cabman cdmake mkhive obj2bin spec2def geninc rsym mkshelllink FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
+ export(TARGETS widl gendib cabman cdmake mkhive obj2bin spec2def geninc rsym mkshelllink FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
else()
export(TARGETS gendib cabman cdmake mkhive obj2bin spec2def geninc mkshelllink FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake NAMESPACE native- )
endif()
diff --git a/reactos/Makefile b/reactos/Makefile
deleted file mode 100644
index cf320c428f6..00000000000
--- a/reactos/Makefile
+++ /dev/null
@@ -1,633 +0,0 @@
-# Well-known targets:
-#
-# all (default target)
-# This target builds all of ReactOS.
-#
-# module
-# These targets builds a single module. Replace module with the name of
-# the module you want to build.
-#
-# bootcd
-# This target builds an ISO (ReactOS.iso) from which ReactOS can be booted
-# and installed.
-#
-# livecd
-# This target builds an ISO (ReactOS-Live.iso) from which ReactOS can be
-# booted, but not installed.
-#
-# install
-# This target installs all of ReactOS to a location specified by the
-# ROS_INSTALL environment variable.
-#
-# module_install
-# These targets installs a single module to a location specified by the
-# ROS_INSTALL environment variable. Replace module with the name of the
-# module you want to install.
-#
-# clean
-# This target cleans (deletes) all files that are generated when building
-# ReactOS.
-#
-# module_clean
-# These targets cleans (deletes) files that are generated when building a
-# single module. Replace module with the name of the module you want to
-# clean.
-#
-# depends
-# This target does a complete dependency check of the ReactOS codebase.
-# This can require several minutes to complete. If you only need to check
-# dependencies for a single or few modules then you can use the
-# module_depends targets instead. This target can also repair a damaged or
-# missing makefile-${ROS_ARCH}.auto if needed.
-#
-# module_depends
-# These targets do a dependency check of individual modules. Replace module
-# with the name of the module for which you want to check dependencies.
-# This is faster than the depends target which does a complete dependency
-# check of the ReactOS codebase.
-#
-# bootcdregtest
-# This target builds an ISO (ReactOS-RegTest.ISO) which is used for unattended
-# regression testing.
-#
-#
-# Accepted environment variables:
-#
-# ROS_ARCH
-# This variable specifies the name of the architecture to build ReactOS for.
-# The variable defaults to i386.
-#
-# ROS_PREFIX
-# This variable specifies the prefix of the MinGW installation. On Windows
-# a prefix is usually not needed, but on linux it is usually "mingw32". If
-# not present and no executable named "gcc" can be found, then the prefix is
-# assumed to be "mingw32". If your gcc is named i386-mingw32-gcc then set
-# ROS_PREFIX to i386-mingw32. Don't include the dash (-) before gcc.
-#
-# ROS_INTERMEDIATE
-# This variable controls where to put intermediate files. Intermediate
-# files are generated files that are needed to generate the final
-# output files. Examples of intermediate files include *.o, *.a, and
-# *.coff. N.B. Don't put a path separator at the end. The variable
-# defaults to .\obj-{ROS_ARCH}.
-#
-# ROS_OUTPUT
-# This variable controls where to put output files. Output files are
-# generated files that makes up the result of the build process.
-# Examples of output files include *.exe, *.dll, and *.sys. N.B. Don't
-# put a path separator at the end. The variable defaults to .\output-{ROS_ARCH}.
-#
-# ROS_CDOUTPUT
-# This variable controls the name of the ReactOS directory on cdrom.
-# The variable defaults to reactos.
-# Warning: setting this value may lead to a not bootable/installable cdrom.
-#
-# ROS_TEMPORARY
-# This variable controls where to put temporary files. Temporary files
-# are (usually small) generated files that are needed to generate the
-# intermediate or final output files. Examples of temporary files include
-# *.rci (preprocessed .rc files for wrc), *.tmp, and *.exp. N.B. Don't put
-# a path separator at the end. The variable defaults to {ROS_INTERMEDIATE}
-# directory.
-#
-# ROS_INSTALL
-# This variable controls where to install output files to when using
-# 'make install'. N.B. Don't put a path separator at the end. The variable
-# defaults to .\{ROS_CDOUTPUT}.
-#
-# ROS_BUILDMAP
-# This variable controls if map files are to be generated for executable
-# output files. Map files have the extension .map. The value can be either
-# full (to build map files with assembly code), yes (to build map files
-# without source code) or no (to not build any map files). The variable
-# defaults to no.
-#
-# ROS_BUILDNOSTRIP
-# This variable controls if non-symbol-stripped versions are to be built
-# of executable output files. Non-symbol-stripped executable output files
-# have .nostrip added to the filename just before the extension. The value
-# can be either yes (to build non-symbol-stripped versions of executable
-# output files) or no (to not build non-symbol-stripped versions of
-# executable output files). The variable defaults to no.
-#
-# ROS_LEAN_AND_MEAN
-# This variable controls if all binaries should be stripped out of useless
-# data added by GCC/LD as well as of RSYM symbol data. Output binary size
-# will go from 80 to 40MB, memory usage from 58 to 38MB and the install CD
-# from 18 to 13MB. The variable defaults to no.
-#
-# ROS_GENERATE_RSYM
-# This variable controls generation of RSYM symbol data. The value can be
-# either yes (to generate symbol data) or no. The variable defaults to yes.
-#
-# ROS_RBUILDFLAGS
-# Pass parameters to rbuild.
-# -v Be verbose.
-# -c Clean as you go. Delete generated files as soon as they are not needed anymore.
-# -dd Disable automatic dependencies.
-# -da Enable automatic dependencies.
-# -df Enable full dependencies.
-# -dm{module} Check only automatic dependencies for this module.
-# -hd Disable precompiled headers.
-# -mi Let make handle creation of install directories. Rbuild will not generate the directories.
-# -ps Generate proxy makefiles in source tree instead of the output tree.
-# -ud Disable compilation units.
-# -r Input XML
-#
-# ROS_AUTOMAKE
-# Alternate name of makefile-${ROS_ARCH}.auto
-#
-# ROS_BUILDENGINE
-# The Build engine to be used. The variable defaults to rbuild (RBUILD_TARGET)
-#
-
-# check for versions of make that don't have features we need...
-# the function "eval" is only available in 3.80+, which happens to be the minimum
-# version that has the features we use...
-# THIS CHECK IS BORROWED FROM THE "GMSL" PROJECT, AND IS COVERED BY THE GPL LICENSE
-# YOU CAN FIND OUT MORE ABOUT GMSL - A VERY COOL PROJECT - AT:
-# http://gmsl.sourceforge.net/
-
-__gmsl_have_eval :=
-__gmsl_ignore := $(eval __gmsl_have_eval := T)
-
-ifndef __gmsl_have_eval
-$(error ReactOS's makefiles use GNU Make 3.80+ features, you have $(MAKE_VERSION), you MUST UPGRADE in order to build ReactOS - Sorry)
-endif
-# END of code borrowed from GMSL ( http://gmsl.sourceforge.net/ )
-
-define NL
-
-
-endef
-
-.PHONY: all
-.PHONY: clean
-.PHONY: world
-.PHONY: universe
-
-ifneq ($(ROS_ARCH),)
- ARCH := $(ROS_ARCH)
-else
- ARCH := i386
-endif
-
-ifeq ($(ROS_AUTOMAKE),)
- ROS_AUTOMAKE=makefile-$(ARCH).auto
-endif
-
-all: $(ROS_AUTOMAKE)
-
-
-.SUFFIXES:
-
-ifeq ($(HOST),)
-ifeq ($(word 1,$(shell gcc -dumpmachine)),mingw32)
-ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
-export OSTYPE = msys
-HOST=mingw32-linux
-HOST_CFLAGS+=-fshort-wchar
-HOST_CPPFLAGS+=-fshort-wchar
-else
-HOST=mingw32-windows
-endif
-else
-HOST=mingw32-linux
-HOST_CFLAGS+=-fshort-wchar
-HOST_CPPFLAGS+=-fshort-wchar
-endif
-endif
-
-# Default to half-verbose mode
-ifeq ($(VERBOSE),no)
- Q = @
- HALFVERBOSEECHO = no
- BUILDNO_QUIET = -q
-else
-ifeq ($(VERBOSE),full)
- Q =
- HALFVERBOSEECHO = no
- BUILDNO_QUIET =
-else
- Q = @
- HALFVERBOSEECHO = yes
- BUILDNO_QUIET = -q
-endif
-endif
-ifeq ($(HOST),mingw32-linux)
- QUOTE = "
-else
- QUOTE =
-endif
-ifeq ($(HALFVERBOSEECHO),yes)
- ECHO_CP =@echo $(QUOTE)[COPY] $@$(QUOTE)
- ECHO_MKDIR =@echo $(QUOTE)[MKDIR] $@$(QUOTE)
- ECHO_BUILDNO =@echo $(QUOTE)[BUILDNO] $@$(QUOTE)
- ECHO_INVOKE =@echo $(QUOTE)[INVOKE] $<$(QUOTE)
- ECHO_PCH =@echo $(QUOTE)[PCH] $@$(QUOTE)
- ECHO_CPP =@echo $(QUOTE)[CPP] $@$(QUOTE)
- ECHO_CC =@echo $(QUOTE)[CC] $<$(QUOTE)
- ECHO_HOSTCC =@echo $(QUOTE)[HOST-CC] $<$(QUOTE)
- ECHO_CL =@echo $(QUOTE)[CL] $<$(QUOTE)
- ECHO_AS =@echo $(QUOTE)[AS] $<$(QUOTE)
- ECHO_NASM =@echo $(QUOTE)[NASM] $<$(QUOTE)
- ECHO_AR =@echo $(QUOTE)[AR] $@$(QUOTE)
- ECHO_HOSTAR =@echo $(QUOTE)[HOST-AR] $@$(QUOTE)
- ECHO_WINEBLD =@echo $(QUOTE)[WINEBLD] $@$(QUOTE)
- ECHO_WRC =@echo $(QUOTE)[WRC] $@$(QUOTE)
- ECHO_RC =@echo $(QUOTE)[RC] $@$(QUOTE)
- ECHO_CVTRES =@echo $(QUOTE)[CVTRES] $@$(QUOTE)
- ECHO_WIDL =@echo $(QUOTE)[WIDL] $@$(QUOTE)
- ECHO_BIN2RES =@echo $(QUOTE)[BIN2RES] $<$(QUOTE)
- ECHO_IMPLIB =@echo $(QUOTE)[IMPLIB] $@$(QUOTE)
- ECHO_LD =@echo $(QUOTE)[LD] $@$(QUOTE)
- ECHO_HOSTLD =@echo $(QUOTE)[HOST-LD] $@$(QUOTE)
- ECHO_LINK =@echo $(QUOTE)[LINK] $@$(QUOTE)
- ECHO_NM =@echo $(QUOTE)[NM] $@$(QUOTE)
- ECHO_OBJDUMP =@echo $(QUOTE)[OBJDUMP] $@$(QUOTE)
- ECHO_RBUILD =@echo $(QUOTE)[RBUILD] $@$(QUOTE)
- ECHO_RSYM =@echo $(QUOTE)[RSYM] $@$(QUOTE)
- ECHO_PEFIXUP =@echo $(QUOTE)[PEFIXUP] $@$(QUOTE)
- ECHO_WMC =@echo $(QUOTE)[WMC] $@$(QUOTE)
- ECHO_NCI =@echo $(QUOTE)[NCI] $@$(QUOTE)
- ECHO_CABMAN =@echo $(QUOTE)[CABMAN] $<$(QUOTE)
- ECHO_CDMAKE =@echo $(QUOTE)[CDMAKE] $@$(QUOTE)
- ECHO_MKHIVE =@echo $(QUOTE)[MKHIVE] $@$(QUOTE)
- ECHO_REGTESTS=@echo $(QUOTE)[REGTESTS] $@$(QUOTE)
- ECHO_TEST =@echo $(QUOTE)[TEST] $@$(QUOTE)
- ECHO_GENDIB =@echo $(QUOTE)[GENDIB] $@$(QUOTE)
- ECHO_STRIP =@echo $(QUOTE)[STRIP] $@$(QUOTE)
- ECHO_RGENSTAT=@echo $(QUOTE)[RGENSTAT] $@$(QUOTE)
- ECHO_DEPENDS =@echo $(QUOTE)[DEPENDS] $<$(QUOTE)
- ECHO_RSP =@echo $(QUOTE)[RSP] $@$(QUOTE)
-else
- ECHO_CP =
- ECHO_MKDIR =
- ECHO_BUILDNO =
- ECHO_INVOKE =
- ECHO_PCH =
- ECHO_CPP =
- ECHO_CC =
- ECHO_HOSTCC =
- ECHO_AS =
- ECHO_NASM =
- ECHO_AR =
- ECHO_HOSTAR =
- ECHO_WINEBLD =
- ECHO_WRC =
- ECHO_RC =
- ECHO_CVTRES =
- ECHO_WIDL =
- ECHO_BIN2RES =
- ECHO_IMPLIB =
- ECHO_LD =
- ECHO_HOSTLD =
- ECHO_NM =
- ECHO_OBJDUMP =
- ECHO_RBUILD =
- ECHO_RSYM =
- ECHO_WMC =
- ECHO_NCI =
- ECHO_CABMAN =
- ECHO_CDMAKE =
- ECHO_MKHIVE =
- ECHO_REGTESTS=
- ECHO_TEST =
- ECHO_GENDIB =
- ECHO_STRIP =
- ECHO_RGENSTAT=
- ECHO_DEPENDS =
- ECHO_RSP =
-endif
-
-# Set host compiler/linker
-ifeq ($(HOST_CC),)
- HOST_CC = gcc
-endif
-ifeq ($(HOST_CPP),)
- HOST_CPP = g++
-endif
-host_gcc = $(Q)$(HOST_CC)
-host_gpp = $(Q)$(HOST_CPP)
-host_ld = $(Q)ld
-host_ar = $(Q)ar
-host_objcopy = $(Q)objcopy
-
-# Set target compiler/linker
-ifneq ($(ROS_PREFIX),)
- PREFIX_ := $(ROS_PREFIX)-
-else
- ifeq ($(HOST),mingw32-linux)
- PREFIX_ := mingw32-
- else
- PREFIX_ :=
- endif
-endif
-ifeq ($(TARGET_CC),)
- TARGET_CC = $(PREFIX_)gcc
-endif
-ifeq ($(TARGET_CPP),)
- TARGET_CPP = $(PREFIX_)g++
-endif
-gcc = $(Q)$(TARGET_CC)
-gpp = $(Q)$(TARGET_CPP)
-gas = $(Q)$(TARGET_CC) -x assembler-with-cpp
-ld = $(Q)$(PREFIX_)ld
-nm = $(Q)$(PREFIX_)nm
-objdump = $(Q)$(PREFIX_)objdump
-ar = $(Q)$(PREFIX_)ar
-objcopy = $(Q)$(PREFIX_)objcopy
-dlltool = $(Q)$(PREFIX_)dlltool
-strip = $(Q)$(PREFIX_)strip
-windres = $(Q)$(PREFIX_)windres
-
-# Set utilities
-ifeq ($(OSTYPE),msys)
- HOST=mingw32-linux
-endif
-ifeq ($(HOST),mingw32-linux)
- ifeq ($(OSTYPE),msys)
- export EXEPOSTFIX = .exe
- else
- export EXEPOSTFIX =
- endif
- export SEP = /
- mkdir = -$(Q)mkdir -p
- checkpoint = $(Q)touch
- rm = $(Q)rm -f
- cp = $(Q)cp
- NUL = /dev/null
-else # mingw32-windows
- export EXEPOSTFIX = .exe
- ROS_EMPTY =
- export SEP = \$(ROS_EMPTY)
- mkdir = -$(Q)mkdir
- checkpoint = $(Q)copy /y NUL
- rm = $(Q)del /f /q
- cp = $(Q)copy /y
- NUL = NUL
-endif
-
-ifneq ($(ROS_INTERMEDIATE),)
- INTERMEDIATE := $(ROS_INTERMEDIATE)
-else
- INTERMEDIATE := obj-$(ARCH)
-endif
-INTERMEDIATE_ := $(INTERMEDIATE)$(SEP)
-
-ifneq ($(ROS_OUTPUT),)
- OUTPUT := $(ROS_OUTPUT)
-else
- OUTPUT := output-$(ARCH)
-endif
-OUTPUT_ := $(OUTPUT)$(SEP)
-
-ifneq ($(ROS_CDOUTPUT),)
- CDOUTPUT := $(ROS_CDOUTPUT)
-else
- CDOUTPUT := reactos
-endif
-CDOUTPUT_ := $(CDOUTPUT)$(SEP)
-
-ifneq ($(ROS_TEMPORARY),)
- TEMPORARY := $(ROS_TEMPORARY)
-else
- TEMPORARY := $(INTERMEDIATE)
-endif
-TEMPORARY_ := $(TEMPORARY)$(SEP)
-
-ifneq ($(ROS_INSTALL),)
- INSTALL := $(ROS_INSTALL)
-else
- INSTALL := $(CDOUTPUT)
-endif
-INSTALL_ := $(INSTALL)$(SEP)
-
-RBUILD_FLAGS := -rReactOS-$(ARCH).rbuild -DARCH=$(ARCH)
-
-$(INTERMEDIATE):
- $(ECHO_MKDIR)
- ${mkdir} $@
-
-ifneq ($(INTERMEDIATE),$(OUTPUT))
-$(OUTPUT):
- $(ECHO_MKDIR)
- ${mkdir} $@
-endif
-
-ifneq ($(TEMPORARY),$(INTERMEDIATE))
-ifneq ($(TEMPORARY),$(OUTPUT))
-$(TEMPORARY):
- $(ECHO_MKDIR)
- ${mkdir} $@
-endif
-endif
-
-BUILDNO_H = $(INTERMEDIATE_)include$(SEP)reactos$(SEP)buildno.h
-
-include lib/lib.mak
-include tools/tools.mak
--include $(ROS_AUTOMAKE)
-
-PREAUTO := \
- $(BIN2C_TARGET) \
- $(BIN2RES_TARGET) \
- $(BUILDNO_H) \
- $(GENDIB_DIB_FILES) \
- $(NCI_SERVICE_FILES)
-
-ifeq ($(ARCH),powerpc)
-PREAUTO += $(OFW_INTERFACE_SERVICE_FILES) $(PPCMMU_TARGETS)
-endif
-
-ifeq ($(ROS_BUILDENGINE),)
-ROS_BUILDENGINE=$(RBUILD_TARGET)
-endif
-
-$(ROS_AUTOMAKE): $(ROS_BUILDENGINE) $(XMLBUILDFILES) | $(PREAUTO)
- ${mkdir} $(OUTPUT_)media$(SEP)inf 2>$(NUL)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) mingw
-
-world: all bootcd livecd
-
-universe:
- $(MAKE) KDBG=1 DBG=1 \
- ROS_AUTOMAKE=makefile-$(ARCH)-kd.auto \
- ROS_INSTALL=reactos-$(ARCH)-kd \
- ROS_INTERMEDIATE=obj-$(ARCH)-kd \
- ROS_OUTPUT=output-$(ARCH)-kd \
- world
- $(MAKE) KDBG=0 DBG=1 \
- ROS_AUTOMAKE=makefile-$(ARCH)-d.auto \
- ROS_INSTALL=reactos-$(ARCH)-d \
- ROS_INTERMEDIATE=obj-$(ARCH)-d \
- ROS_OUTPUT=output-$(ARCH)-d \
- world
- $(MAKE) KDBG=0 DBG=0 \
- ROS_AUTOMAKE=makefile-$(ARCH)-r.auto \
- ROS_INSTALL=reactos-$(ARCH)-r \
- ROS_INTERMEDIATE=obj-$(ARCH)-r \
- ROS_OUTPUT=output-$(ARCH)-r \
- world
-
-.PHONY: rgenstat
-rgenstat: $(RGENSTAT_TARGET)
- $(ECHO_RGENSTAT)
- $(Q)$(RGENSTAT_TARGET) apistatus.lst apistatus.xml
-
-.PHONY: msbuild
-msbuild: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) msbuild
-
-.PHONY: msbuild_clean
-msbuild_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c msbuild
-
-.PHONY: depmap
-depmap: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) depmap
-
-.PHONY: vreport
-vreport:$(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) vreport
-
-.PHONY: msvc
-msvc: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) msvc
-
-.PHONY: msvc6
-msvc6: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs6.00 -voversionconfiguration msvc
-
-.PHONY: msvc7
-msvc7: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.00 -voversionconfiguration msvc
-
-.PHONY: msvc71
-msvc71: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.10 -voversionconfiguration msvc
-
-.PHONY: msvc8
-msvc8: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs8.00 -voversionconfiguration msvc
-
-.PHONY: msvc9
-msvc9: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs9.00 -voversionconfiguration msvc
-
-.PHONY: msvc10
-msvc10: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs10.00 -voversionconfiguration msvc
-
-.PHONY: msvc6_clean
-msvc6_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs6.00 -voversionconfiguration msvc
-
-.PHONY: msvc7_clean
-msvc7_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs7.00 -voversionconfiguration msvc
-
-.PHONY: msvc71_clean
-msvc71_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs7.10 -voversionconfiguration msvc
-
-.PHONY: msvc8_clean
-msvc8_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs8.00 -voversionconfiguration msvc
-
-.PHONY: msvc9_clean
-msvc9_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs9.00 -voversionconfiguration msvc
-
-.PHONY: msvc10_clean
-msvc10_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs10.00 -voversionconfiguration msvc
-
-.PHONY: msvc_clean
-msvc_clean: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c msvc
-
-.PHONY: msvc_clean_all
-msvc_clean_all: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs6.00 -voversionconfiguration msvc
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs7.00 -voversionconfiguration msvc
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs7.10 -voversionconfiguration msvc
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -c -vs8.10 -voversionconfiguration msvc
-
-.PHONY: msvc7_install_debug
-msvc7_install_debug: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.00 -vcdebug -voversionconfiguration msvc
-
-.PHONY: msvc7_install_release
-msvc7_install_release: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.00 -vcrelease -voversionconfiguration msvc
-
-.PHONY: msvc7_install_speed
-msvc7_install_speed: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.00 -vcspeed -voversionconfiguration msvc
-
-.PHONY: msvc71_install_debug
-msvc71_install_debug: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.10 -vcdebug -voversionconfiguration msvc
-
-.PHONY: msvc71_install_release
-msvc71_install_release: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.10 -vcrelease -voversionconfiguration msvc
-
-
-.PHONY: msvc71_install_speed
-msvc71_install_speed: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs7.10 -vcspeed -voversionconfiguration msvc
-
-.PHONY: msvc8_install_debug
-msvc8_install_debug: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs8.00 -vcdebug -voversionconfiguration msvc
-
-.PHONY: msvc8_install_release
-msvc8_install_release: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs8.00 -vcrelease -voversionconfiguration msvc
-
-.PHONY: msvc8_install_speed
-msvc8_install_speed: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) -vs8.00 -vcspeed -voversionconfiguration msvc
-
-.PHONY: makefile_auto_clean
-makefile_auto_clean:
- -@$(rm) $(ROS_AUTOMAKE) $(PREAUTO) 2>$(NUL)
-
-.PHONY: clean
-clean: makefile_auto_clean
-
-.PHONY: depends
-depends: $(ROS_BUILDENGINE)
- $(ECHO_RBUILD)
- $(Q)$(ROS_BUILDENGINE) $(RBUILD_FLAGS) $(ROS_RBUILDFLAGS) mingw
diff --git a/reactos/ReactOS-amd64.rbuild b/reactos/ReactOS-amd64.rbuild
deleted file mode 100644
index aed1245aba4..00000000000
--- a/reactos/ReactOS-amd64.rbuild
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -ftracer
- -momit-leaf-frame-pointer
-
- -fms-extensions
- -mpreferred-stack-boundary=4
- -m64 --win64
-
-
- -U_X86_
- -UWIN32
- -Wno-format
-
-
-
- -disable-stdcall-fixup
- -file-alignment=0x1000
- -section-alignment=0x1000
- --unique=.eh_frame
- -static
- --exclude-all-symbols
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/ReactOS-arm.rbuild b/reactos/ReactOS-arm.rbuild
deleted file mode 100644
index 22da8090ddb..00000000000
--- a/reactos/ReactOS-arm.rbuild
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- include/reactos/arm
-
-
-
-
-
-
-
- -ftracer
-
- -fms-extensions
- -Wno-attributes
- -U_UNICODE
- -UUNICODE
-
-
-
-
-
-
- --strip-debug
- -static
- -file-alignment=0x1000
- -section-alignment=0x1000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/ReactOS-generic.rbuild b/reactos/ReactOS-generic.rbuild
deleted file mode 100644
index 7b6d23a19a2..00000000000
--- a/reactos/ReactOS-generic.rbuild
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
-
-
-
-
-
- 1
-
-
-
-
- 0
-
-
-
- 1
-
-
-
-
-
-
-
- 0x400
- 0x600
- 0x400
- 0x400
- 0x400
-
-
-
- 0x500
- 0x600
- 0x500
- 0x500
- 0x500
-
-
-
- 0x501
- 0x600
- 0x501
- 0x501
- 0x501
-
-
-
- 0x502
- 0x600
- 0x502
- 0x502
- 0x502
-
-
-
- 0x600
- 0x600
- 0x600
- 0x600
- 0x600
-
-
- .
- include
- include
- include/psdk
- include/psdk
- include/dxsdk
- include/dxsdk
- include/crt
- include/crt/mingw32
- include/crt/msc
- include/ddk
- include/GL
- include/ndk
- include/reactos
- include/reactos
- include/reactos/mc
- include/reactos/libs
-
- include/host
-
-
- -Wall
- -Wno-char-subscripts
- -Wno-non-virtual-dtor
-
-
-
- __inline
- 1
- /Zl
- /Zi
- /W1
-
-
-
-
- -Os
-
-
- -Os
-
-
- -O1
-
-
- -O2
-
-
- -O3
-
-
- -fno-strict-aliasing
- -Wpointer-arith
- -Wno-multichar
- -Wno-error=uninitialized
-
-
-
-
-
- /O1
-
-
- /O2
-
-
- /Ox /GS-
- /Ot
-
-
- /Ox /GS-
- /Os
-
-
- /Ox /GS-
- /Os
- /Ob2
- /GF
- /Gy
-
-
- /GS-
-
-
-
diff --git a/reactos/ReactOS-i386.rbuild b/reactos/ReactOS-i386.rbuild
deleted file mode 100644
index 0cf26e14c75..00000000000
--- a/reactos/ReactOS-i386.rbuild
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -ftracer
- -momit-leaf-frame-pointer
-
- -fms-extensions
- -mpreferred-stack-boundary=2
- -m32 --win32
- -gstabs+
- -fno-set-stack-executable
- -fno-optimize-sibling-calls
- -fno-omit-frame-pointer
- -gstabs+
-
-
-
- -disable-stdcall-fixup
- -file-alignment=0x1000
- -section-alignment=0x1000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/ReactOS-ppc.rbuild b/reactos/ReactOS-ppc.rbuild
deleted file mode 100644
index 1dd201e05b3..00000000000
--- a/reactos/ReactOS-ppc.rbuild
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -fshort-wchar
- -fsigned-char
- -mfull-toc
- -meabi
- -O2
- -Wno-strict-aliasing
- -gstabs+
- -gstabs+
-
diff --git a/reactos/base/applications/applications.rbuild b/reactos/base/applications/applications.rbuild
deleted file mode 100644
index 8255a9c61ad..00000000000
--- a/reactos/base/applications/applications.rbuild
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/applications/cacls/cacls.rbuild b/reactos/base/applications/cacls/cacls.rbuild
deleted file mode 100644
index 96b8fbee462..00000000000
--- a/reactos/base/applications/cacls/cacls.rbuild
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- .
- advapi32
- ntdll
- user32
- shell32
- cacls.c
- cacls.rc
- precomp.h
-
diff --git a/reactos/base/applications/calc/calc.rbuild b/reactos/base/applications/calc/calc.rbuild
deleted file mode 100644
index 4cbc7869e3e..00000000000
--- a/reactos/base/applications/calc/calc.rbuild
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- .
- 1
- msvcrt
- advapi32
- gdi32
- user32
- about.c
- convert.c
- function.c
- rpn.c
- utl.c
- winmain.c
- resource.rc
- calc.h
-
diff --git a/reactos/base/applications/charmap/charmap.rbuild b/reactos/base/applications/charmap/charmap.rbuild
deleted file mode 100644
index bdea2fd7f1f..00000000000
--- a/reactos/base/applications/charmap/charmap.rbuild
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- .
- gdi32
- user32
- comctl32
- about.c
- charmap.c
- lrgcell.c
- map.c
- charmap.rc
- precomp.h
-
diff --git a/reactos/base/applications/cmdutils/cmdutils.rbuild b/reactos/base/applications/cmdutils/cmdutils.rbuild
deleted file mode 100644
index 23f964db9c1..00000000000
--- a/reactos/base/applications/cmdutils/cmdutils.rbuild
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/applications/cmdutils/dbgprint/dbgprint.rbuild b/reactos/base/applications/cmdutils/dbgprint/dbgprint.rbuild
deleted file mode 100644
index 7fae9cfe87a..00000000000
--- a/reactos/base/applications/cmdutils/dbgprint/dbgprint.rbuild
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
- dbgprint.c
-
diff --git a/reactos/base/applications/cmdutils/doskey/doskey.rbuild b/reactos/base/applications/cmdutils/doskey/doskey.rbuild
deleted file mode 100644
index f38eb3009d7..00000000000
--- a/reactos/base/applications/cmdutils/doskey/doskey.rbuild
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- user32
- doskey.c
- doskey.rc
-
diff --git a/reactos/base/applications/cmdutils/find/find.rbuild b/reactos/base/applications/cmdutils/find/find.rbuild
deleted file mode 100644
index 84a700aa724..00000000000
--- a/reactos/base/applications/cmdutils/find/find.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- user32
- find.c
- find.rc
- rsrc.rc
-
diff --git a/reactos/base/applications/cmdutils/hostname/hostname.rbuild b/reactos/base/applications/cmdutils/hostname/hostname.rbuild
deleted file mode 100644
index 76a3f4084d7..00000000000
--- a/reactos/base/applications/cmdutils/hostname/hostname.rbuild
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- hostname.c
- hostname.rc
-
-
diff --git a/reactos/base/applications/cmdutils/lodctr/lodctr.rbuild b/reactos/base/applications/cmdutils/lodctr/lodctr.rbuild
deleted file mode 100644
index ea5e7cf1198..00000000000
--- a/reactos/base/applications/cmdutils/lodctr/lodctr.rbuild
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- loadperf
- wine
- lodctr_main.c
-
diff --git a/reactos/base/applications/cmdutils/more/more.rbuild b/reactos/base/applications/cmdutils/more/more.rbuild
deleted file mode 100644
index c94585a53ba..00000000000
--- a/reactos/base/applications/cmdutils/more/more.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- ntdll
- user32
- more.c
- more.rc
-
diff --git a/reactos/base/applications/cmdutils/reg/reg.rbuild b/reactos/base/applications/cmdutils/reg/reg.rbuild
deleted file mode 100644
index ac33ef4fd0b..00000000000
--- a/reactos/base/applications/cmdutils/reg/reg.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- 0x600
- wine
- advapi32
- user32
- reg.c
- rsrc.rc
-
diff --git a/reactos/base/applications/cmdutils/xcopy/xcopy.rbuild b/reactos/base/applications/cmdutils/xcopy/xcopy.rbuild
deleted file mode 100644
index 437fa46bf63..00000000000
--- a/reactos/base/applications/cmdutils/xcopy/xcopy.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- wine
- shell32
- user32
- xcopy.c
- rsrc.rc
-
-
diff --git a/reactos/base/applications/control/control.rbuild b/reactos/base/applications/control/control.rbuild
deleted file mode 100644
index 2fe410ec9c7..00000000000
--- a/reactos/base/applications/control/control.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- advapi32
- shell32
- control.c
- control.rc
-
diff --git a/reactos/base/applications/dxdiag/dxdiag.rbuild b/reactos/base/applications/dxdiag/dxdiag.rbuild
deleted file mode 100644
index 1da09c53cdd..00000000000
--- a/reactos/base/applications/dxdiag/dxdiag.rbuild
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- .
- user32
- advapi32
- comctl32
- shell32
- version
- dinput8
- setupapi
- dxguid
- dsound
- ddraw
- version
- gdi32
- winmm
- wintrust
- d3d9
- system.c
- display.c
- sound.c
- music.c
- input.c
- network.c
- help.c
- dxdiag.c
- dxdiag.rc
- ddtest.c
- d3dtest.c
- d3dtest7.c
- d3dtest8.c
- d3dtest9.c
- precomp.h
-
diff --git a/reactos/base/applications/extrac32/extrac32.rbuild b/reactos/base/applications/extrac32/extrac32.rbuild
deleted file mode 100644
index 24532ddfd3d..00000000000
--- a/reactos/base/applications/extrac32/extrac32.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
- .
- wine
- shell32
- setupapi
- shlwapi
- user32
- extrac32.c
-
diff --git a/reactos/base/applications/findstr/findstr.rbuild b/reactos/base/applications/findstr/findstr.rbuild
deleted file mode 100644
index 64306e39df8..00000000000
--- a/reactos/base/applications/findstr/findstr.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- user32
- findstr.c
- findstr.rc
- rsrc.rc
-
diff --git a/reactos/base/applications/fontview/fontview.rbuild b/reactos/base/applications/fontview/fontview.rbuild
deleted file mode 100644
index f5cad36f1a9..00000000000
--- a/reactos/base/applications/fontview/fontview.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- gdi32
- user32
- shell32
- fontview.c
- display.c
- fontview.rc
-
diff --git a/reactos/base/applications/games/games.rbuild b/reactos/base/applications/games/games.rbuild
deleted file mode 100644
index 53c751369f3..00000000000
--- a/reactos/base/applications/games/games.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/reactos/base/applications/games/solitaire/solitaire.rbuild b/reactos/base/applications/games/solitaire/solitaire.rbuild
deleted file mode 100644
index 98ea8fbb0cc..00000000000
--- a/reactos/base/applications/games/solitaire/solitaire.rbuild
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- .
- .
- cardlib
- solcreate.cpp
- solgame.cpp
- solitaire.cpp
- rsrc.rc
- solitaire.h
-
diff --git a/reactos/base/applications/games/spider/spider.rbuild b/reactos/base/applications/games/spider/spider.rbuild
deleted file mode 100644
index 52b86c72e34..00000000000
--- a/reactos/base/applications/games/spider/spider.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- .
- cardlib
- spigame.cpp
- spider.cpp
- rsrc.rc
- spider.h
-
diff --git a/reactos/base/applications/games/winmine/winmine.rbuild b/reactos/base/applications/games/winmine/winmine.rbuild
deleted file mode 100644
index 97abb45666d..00000000000
--- a/reactos/base/applications/games/winmine/winmine.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- .
- wine
- gdi32
- user32
- advapi32
- shell32
- main.c
- dialog.c
- rsrc.rc
-
diff --git a/reactos/base/applications/hh/hh.rbuild b/reactos/base/applications/hh/hh.rbuild
deleted file mode 100644
index c81f6680097..00000000000
--- a/reactos/base/applications/hh/hh.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- user32
- gdi32
- main.c
- hh.rc
-
diff --git a/reactos/base/applications/iexplore/iexplore.rbuild b/reactos/base/applications/iexplore/iexplore.rbuild
deleted file mode 100644
index 5fa8e6a0c14..00000000000
--- a/reactos/base/applications/iexplore/iexplore.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- user32
- gdi32
- shdocvw
- main.c
- iexplore.rc
-
diff --git a/reactos/base/applications/kbswitch/kbsdll/kbsdll.rbuild b/reactos/base/applications/kbswitch/kbsdll/kbsdll.rbuild
deleted file mode 100644
index f459343e6c3..00000000000
--- a/reactos/base/applications/kbswitch/kbsdll/kbsdll.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- .
- user32
- comctl32
- kbsdll.c
- kbsdll.rc
-
diff --git a/reactos/base/applications/kbswitch/kbswitch.rbuild b/reactos/base/applications/kbswitch/kbswitch.rbuild
deleted file mode 100644
index 11ea960adae..00000000000
--- a/reactos/base/applications/kbswitch/kbswitch.rbuild
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- .
- advapi32
- user32
- shell32
- gdi32
- kbswitch.c
- kbswitch.rc
-
-
-
-
-
diff --git a/reactos/base/applications/logoff/logoff.rbuild b/reactos/base/applications/logoff/logoff.rbuild
deleted file mode 100644
index d53f79499e4..00000000000
--- a/reactos/base/applications/logoff/logoff.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- advapi32
- user32
- misc.c
- logoff.c
- logoff.rc
- precomp.h
-
diff --git a/reactos/base/applications/magnify/magnify.rbuild b/reactos/base/applications/magnify/magnify.rbuild
deleted file mode 100644
index bf08bc862a3..00000000000
--- a/reactos/base/applications/magnify/magnify.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- .
- user32
- gdi32
- advapi32
- shell32
- magnifier.c
- settings.c
- magnify.rc
- magnifier.h
-
diff --git a/reactos/base/applications/mmc/mmc.rbuild b/reactos/base/applications/mmc/mmc.rbuild
deleted file mode 100644
index 8976acd569e..00000000000
--- a/reactos/base/applications/mmc/mmc.rbuild
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- .
- user32
- gdi32
- comdlg32
- advapi32
- shell32
- comctl32
- console.c
- misc.c
- mmc.c
- mmc.rc
- precomp.h
-
diff --git a/reactos/base/applications/mplay32/mplay32.rbuild b/reactos/base/applications/mplay32/mplay32.rbuild
deleted file mode 100644
index 77003d90898..00000000000
--- a/reactos/base/applications/mplay32/mplay32.rbuild
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- .
- advapi32
- comctl32
- comdlg32
- user32
- gdi32
- winmm
- shell32
- mplay32.c
- mplay32.rc
-
diff --git a/reactos/base/applications/msconfig/msconfig.rbuild b/reactos/base/applications/msconfig/msconfig.rbuild
deleted file mode 100644
index 958125f2d0f..00000000000
--- a/reactos/base/applications/msconfig/msconfig.rbuild
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- .
- user32
- advapi32
- version
- comctl32
- shell32
- shlwapi
-
- toolspage.c
- srvpage.c
- systempage.c
- startuppage.c
- freeldrpage.c
- generalpage.c
- msconfig.c
-
- msconfig.rc
- precomp.h
-
diff --git a/reactos/base/applications/mscutils/devmgmt/devmgmt.rbuild b/reactos/base/applications/mscutils/devmgmt/devmgmt.rbuild
deleted file mode 100644
index a5f6844f06a..00000000000
--- a/reactos/base/applications/mscutils/devmgmt/devmgmt.rbuild
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-.
- ntdll
- setupapi
- gdi32
- user32
- comctl32
- advapi32
- devmgr
-
- about.c
- devmgmt.c
- enumdevices.c
- mainwnd.c
- misc.c
-
- devmgmt.rc
- precomp.h
-
diff --git a/reactos/base/applications/mscutils/directory.rbuild b/reactos/base/applications/mscutils/directory.rbuild
deleted file mode 100644
index 454397af7cc..00000000000
--- a/reactos/base/applications/mscutils/directory.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/applications/mscutils/eventvwr/eventvwr.rbuild b/reactos/base/applications/mscutils/eventvwr/eventvwr.rbuild
deleted file mode 100644
index cb23e1f3eef..00000000000
--- a/reactos/base/applications/mscutils/eventvwr/eventvwr.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- user32
- comctl32
- advapi32
- eventvwr.c
- eventvwr.rc
-
diff --git a/reactos/base/applications/mscutils/servman/servman.rbuild b/reactos/base/applications/mscutils/servman/servman.rbuild
deleted file mode 100644
index 1d4951f89c7..00000000000
--- a/reactos/base/applications/mscutils/servman/servman.rbuild
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- .
- user32
- gdi32
- advapi32
- version
- comctl32
- shell32
- comdlg32
-
- about.c
- control.c
- create.c
- delete.c
- dependencies_tv1.c
- dependencies_tv2.c
- export.c
- listview.c
- mainwnd.c
- misc.c
- progress.c
- propsheet.c
- propsheet_depends.c
- propsheet_general.c
- query.c
- servman.c
- start.c
- stop.c
- stop_dependencies.c
-
- servman.rc
- precomp.h
-
diff --git a/reactos/base/applications/mspaint/mspaint.rbuild b/reactos/base/applications/mspaint/mspaint.rbuild
deleted file mode 100644
index 7f1c410c66c..00000000000
--- a/reactos/base/applications/mspaint/mspaint.rbuild
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- .
- comdlg32
- shell32
- user32
- gdi32
- advapi32
- comctl32
- dialogs.c
- dib.c
- drawing.c
- history.c
- main.c
- mouse.c
- palette.c
- registry.c
- selection.c
- sizebox.c
- toolsettings.c
- winproc.c
- rsrc.rc
-
diff --git a/reactos/base/applications/mstsc/mstsc.rbuild b/reactos/base/applications/mstsc/mstsc.rbuild
deleted file mode 100644
index c8ed8e3e571..00000000000
--- a/reactos/base/applications/mstsc/mstsc.rbuild
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- .
- user32
- gdi32
- comctl32
- ws2_32
- advapi32
- shell32
- ole32
- comdlg32
-
- bitmap.c
- bsops.c
- cache.c
- channels.c
- connectdialog.c
- iso.c
- licence.c
- mcs.c
- mppc.c
- orders.c
- pstcache.c
- rdp5.c
- rdp.c
- secure.c
- settings.c
- ssl_calls.c
- tcp.c
- uimain.c
- win32.c
-
- rdc.rc
- precomp.h
-
diff --git a/reactos/base/applications/network/arp/arp.rbuild b/reactos/base/applications/network/arp/arp.rbuild
deleted file mode 100644
index ed2e096b15d..00000000000
--- a/reactos/base/applications/network/arp/arp.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- iphlpapi
- ws2_32
- shlwapi
- arp.c
- arp.rc
-
diff --git a/reactos/base/applications/network/dwnl/dwnl.rbuild b/reactos/base/applications/network/dwnl/dwnl.rbuild
deleted file mode 100644
index 36c30c0459c..00000000000
--- a/reactos/base/applications/network/dwnl/dwnl.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- urlmon
- wininet
- uuid
- dwnl.c
-
diff --git a/reactos/base/applications/network/finger/finger.rbuild b/reactos/base/applications/network/finger/finger.rbuild
deleted file mode 100644
index fd25abc54d0..00000000000
--- a/reactos/base/applications/network/finger/finger.rbuild
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- .
-
- ws2_32
- finger.c
- err.c
- getopt.c
- net.c
- finger.rc
-
diff --git a/reactos/base/applications/network/ftp/ftp.rbuild b/reactos/base/applications/network/ftp/ftp.rbuild
deleted file mode 100644
index 60f7ea5c659..00000000000
--- a/reactos/base/applications/network/ftp/ftp.rbuild
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- .
-
-
-
- _chdir
- _getcwd
- _mktemp
- _unlink
- _close
- _fileno
- _read
- _write
- _lseek
-
- ws2_32
- iphlpapi
- oldnames
- cmds.c
- cmdtab.c
- domacro.c
- fake.c
- ftp.c
- main.c
- ruserpass.c
- ftp.rc
-
diff --git a/reactos/base/applications/network/ipconfig/ipconfig.rbuild b/reactos/base/applications/network/ipconfig/ipconfig.rbuild
deleted file mode 100644
index 454bd37f5c7..00000000000
--- a/reactos/base/applications/network/ipconfig/ipconfig.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- user32
- iphlpapi
- advapi32
- ipconfig.c
- ipconfig.rc
-
diff --git a/reactos/base/applications/network/net/net.rbuild b/reactos/base/applications/network/net/net.rbuild
deleted file mode 100644
index 889e3a67571..00000000000
--- a/reactos/base/applications/network/net/net.rbuild
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- .
-
- ws2_32
- main.c
- cmdstart.c
- cmdStop.c
- help.c
- process.c
-
diff --git a/reactos/base/applications/network/netstat/netstat.rbuild b/reactos/base/applications/network/netstat/netstat.rbuild
deleted file mode 100644
index b7d4c4c973c..00000000000
--- a/reactos/base/applications/network/netstat/netstat.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- user32
- ws2_32
- snmpapi
- iphlpapi
- netstat.c
- netstat.rc
-
diff --git a/reactos/base/applications/network/network.rbuild b/reactos/base/applications/network/network.rbuild
deleted file mode 100644
index 13b9a537328..00000000000
--- a/reactos/base/applications/network/network.rbuild
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/applications/network/nslookup/nslookup.rbuild b/reactos/base/applications/network/nslookup/nslookup.rbuild
deleted file mode 100644
index e483d4ab5f3..00000000000
--- a/reactos/base/applications/network/nslookup/nslookup.rbuild
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- .
- user32
- ws2_32
- snmpapi
- iphlpapi
- nslookup.c
- utility.c
- nslookup.rc
-
diff --git a/reactos/base/applications/network/ping/ping.rbuild b/reactos/base/applications/network/ping/ping.rbuild
deleted file mode 100644
index 72dacc18479..00000000000
--- a/reactos/base/applications/network/ping/ping.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
-
- ws2_32
- ping.c
- ping.rc
-
diff --git a/reactos/base/applications/network/route/route.rbuild b/reactos/base/applications/network/route/route.rbuild
deleted file mode 100644
index eea7b8d76a3..00000000000
--- a/reactos/base/applications/network/route/route.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- ws2_32
- iphlpapi
- route.c
- route.rc
-
diff --git a/reactos/base/applications/network/telnet/telnet.rbuild b/reactos/base/applications/network/telnet/telnet.rbuild
deleted file mode 100644
index 92e63337318..00000000000
--- a/reactos/base/applications/network/telnet/telnet.rbuild
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
- .
- ws2_32
- user32
-
-
- ansiprsr.cpp
- keytrans.cpp
- tcharmap.cpp
- tconsole.cpp
- tkeydef.cpp
- tkeymap.cpp
- tmapldr.cpp
- tmouse.cpp
- tnclass.cpp
- tnclip.cpp
- tncon.cpp
- tnconfig.cpp
- tnerror.cpp
- tnetwork.cpp
- tnmain.cpp
- tnmisc.cpp
- tscript.cpp
- tscroll.cpp
- ttelhndl.cpp
-
- telnet.rc
-
diff --git a/reactos/base/applications/network/tracert/tracert.rbuild b/reactos/base/applications/network/tracert/tracert.rbuild
deleted file mode 100644
index f2f9a33b813..00000000000
--- a/reactos/base/applications/network/tracert/tracert.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
-
- ws2_32
- tracert.c
- tracert.rc
-
diff --git a/reactos/base/applications/network/whois/whois.rbuild b/reactos/base/applications/network/whois/whois.rbuild
deleted file mode 100644
index f208aa2d97c..00000000000
--- a/reactos/base/applications/network/whois/whois.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- .
- ws2_32
- whois.c
- whois.rc
-
diff --git a/reactos/base/applications/network/wlanconf/wlanconf.rbuild b/reactos/base/applications/network/wlanconf/wlanconf.rbuild
deleted file mode 100644
index 9658c2826eb..00000000000
--- a/reactos/base/applications/network/wlanconf/wlanconf.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- include/reactos/drivers/ndisuio
- iphlpapi
- wlanconf.c
- wlanconf.rc
-
diff --git a/reactos/base/applications/notepad/notepad.rbuild b/reactos/base/applications/notepad/notepad.rbuild
deleted file mode 100644
index 8a89a7e8e76..00000000000
--- a/reactos/base/applications/notepad/notepad.rbuild
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- .
- user32
- gdi32
- comdlg32
- comctl32
- advapi32
- shell32
- dialog.c
- main.c
- text.c
- settings.c
- rsrc.rc
- notepad.h
-
diff --git a/reactos/base/applications/rapps/rapps.rbuild b/reactos/base/applications/rapps/rapps.rbuild
deleted file mode 100644
index bc83f3aade9..00000000000
--- a/reactos/base/applications/rapps/rapps.rbuild
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- include/reactos
- .
- .
-
- advapi32
- comctl32
- gdi32
- urlmon
- user32
- uuid
- shell32
- shlwapi
- ntdll
-
- rappsmsg
-
- aboutdlg.c
- available.c
- installdlg.c
- installed.c
- listview.c
- loaddlg.c
- misc.c
- parser.c
- richedit.c
- settingsdlg.c
- splitter.c
- statusbar.c
- toolbar.c
- treeview.c
- winmain.c
- rapps.rc
-
-
- rappsmsg.mc
-
-
diff --git a/reactos/base/applications/regedit/clb/clb.rbuild b/reactos/base/applications/regedit/clb/clb.rbuild
deleted file mode 100644
index aad50816d78..00000000000
--- a/reactos/base/applications/regedit/clb/clb.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- .
- ntdll
- user32
- gdi32
- comctl32
- clb.c
- clb.rc
- precomp.h
-
diff --git a/reactos/base/applications/regedit/regedit.rbuild b/reactos/base/applications/regedit/regedit.rbuild
deleted file mode 100644
index 786ee44d6cf..00000000000
--- a/reactos/base/applications/regedit/regedit.rbuild
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
- .
-
-
- uuid
- user32
- gdi32
- advapi32
- ole32
- shell32
- comctl32
- comdlg32
- shlwapi
- uuid
- about.c
- childwnd.c
- edit.c
- find.c
- framewnd.c
- hexedit.c
- listview.c
- main.c
- error.c
- regedit.c
- regproc.c
- security.c
- treeview.c
- regedit.rc
- regedit.h
-
-
-
-
-
diff --git a/reactos/base/applications/regedt32/regedt32.rbuild b/reactos/base/applications/regedt32/regedt32.rbuild
deleted file mode 100644
index 6b0b03773e9..00000000000
--- a/reactos/base/applications/regedt32/regedt32.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- shell32
- shlwapi
- regedt32.c
- resource.rc
-
diff --git a/reactos/base/applications/sc/sc.rbuild b/reactos/base/applications/sc/sc.rbuild
deleted file mode 100644
index 4bef374d021..00000000000
--- a/reactos/base/applications/sc/sc.rbuild
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- advapi32
- control.c
- create.c
- delete.c
- print.c
- query.c
- sc.c
- start.c
- usage.c
- sc.rc
- sc.h
-
diff --git a/reactos/base/applications/screensavers/3dtext/3dtext.rbuild b/reactos/base/applications/screensavers/3dtext/3dtext.rbuild
deleted file mode 100644
index 1a1e115b763..00000000000
--- a/reactos/base/applications/screensavers/3dtext/3dtext.rbuild
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- scrnsave
- chkstk
- user32
- gdi32
- opengl32
- glu32
- advapi32
-
- 3dtext.c
- settings.c
- rsrc.rc
-
-
-
diff --git a/reactos/base/applications/screensavers/logon/logon.rbuild b/reactos/base/applications/screensavers/logon/logon.rbuild
deleted file mode 100644
index 562c62de9b1..00000000000
--- a/reactos/base/applications/screensavers/logon/logon.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- .
- scrnsave
- user32
- gdi32
-
-
-
- logon.c
- logon.rc
-
diff --git a/reactos/base/applications/screensavers/screensavers.rbuild b/reactos/base/applications/screensavers/screensavers.rbuild
deleted file mode 100644
index ed3d070a2a3..00000000000
--- a/reactos/base/applications/screensavers/screensavers.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/applications/shutdown/shutdown.rbuild b/reactos/base/applications/shutdown/shutdown.rbuild
deleted file mode 100644
index 6260c0055ab..00000000000
--- a/reactos/base/applications/shutdown/shutdown.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- advapi32
- user32
- misc.c
- shutdown.c
- shutdown.rc
- precomp.h
-
diff --git a/reactos/base/applications/sndrec32/sndrec32.rbuild b/reactos/base/applications/sndrec32/sndrec32.rbuild
deleted file mode 100644
index f101a14ba3a..00000000000
--- a/reactos/base/applications/sndrec32/sndrec32.rbuild
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- .
- winmm
- user32
- msacm32
- comctl32
- comdlg32
- gdi32
- audio_format.cpp
- audio_membuffer.cpp
- audio_producer.cpp
- audio_receiver.cpp
- audio_resampler_acm.cpp
- audio_wavein.cpp
- audio_waveout.cpp
- sndrec32.cpp
- rsrc.rc
-
diff --git a/reactos/base/applications/sndvol32/sndvol32.rbuild b/reactos/base/applications/sndvol32/sndvol32.rbuild
deleted file mode 100644
index 38d5d9e0f5a..00000000000
--- a/reactos/base/applications/sndvol32/sndvol32.rbuild
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- include/wine
- .
- ntdll
- user32
- advapi32
- gdi32
- comctl32
- shell32
- winmm
- sndvol32.h
- dialog.c
- misc.c
- mixer.c
- sndvol32.c
- sndvol32.rc
-
diff --git a/reactos/base/applications/taskmgr/taskmgr.rbuild b/reactos/base/applications/taskmgr/taskmgr.rbuild
deleted file mode 100644
index 8db44813d26..00000000000
--- a/reactos/base/applications/taskmgr/taskmgr.rbuild
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- .
- ntdll
- advapi32
- user32
- gdi32
- shell32
- comctl32
- precomp.h
-
- about.c
- affinity.c
- applpage.c
- column.c
- dbgchnl.c
- debug.c
- endproc.c
- graph.c
- optnmenu.c
- perfdata.c
- perfpage.c
- priority.c
- procpage.c
- proclist.c
- run.c
- trayicon.c
- taskmgr.c
- graphctl.c
-
- taskmgr.rc
-
diff --git a/reactos/base/applications/winhlp32/winhlp32.rbuild b/reactos/base/applications/winhlp32/winhlp32.rbuild
deleted file mode 100644
index fd3234ec387..00000000000
--- a/reactos/base/applications/winhlp32/winhlp32.rbuild
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
- .
- include/reactos/wine
-
-
-
-
- _fileno
- _isatty
-
- wine
- user32
- gdi32
- shell32
- comctl32
- comdlg32
- callback.c
- hlpfile.c
- macro.c
- string.c
- winhelp.c
- lex.yy.c
- rsrc.rc
-
diff --git a/reactos/base/applications/winver/winver.rbuild b/reactos/base/applications/winver/winver.rbuild
deleted file mode 100644
index 4f24a7166bd..00000000000
--- a/reactos/base/applications/winver/winver.rbuild
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- .
- shell32
- winver.c
-
diff --git a/reactos/base/applications/wordpad/wordpad.rbuild b/reactos/base/applications/wordpad/wordpad.rbuild
deleted file mode 100644
index 069fb119a0b..00000000000
--- a/reactos/base/applications/wordpad/wordpad.rbuild
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
- .
- include/reactos/wine
-
- wine
- comdlg32
- uuid
- ole32
- shell32
- user32
- gdi32
- advapi32
- comctl32
- olecallback.c
- print.c
- registry.c
- wordpad.c
- rsrc.rc
-
diff --git a/reactos/base/applications/write/write.rbuild b/reactos/base/applications/write/write.rbuild
deleted file mode 100644
index 92f85eee3ef..00000000000
--- a/reactos/base/applications/write/write.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- user32
- gdi32
- write.c
- rsrc.rc
-
diff --git a/reactos/base/base.rbuild b/reactos/base/base.rbuild
deleted file mode 100644
index 63cf67e1bd9..00000000000
--- a/reactos/base/base.rbuild
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/services/audiosrv/audiosrv.rbuild b/reactos/base/services/audiosrv/audiosrv.rbuild
deleted file mode 100644
index 4bbe4a03941..00000000000
--- a/reactos/base/services/audiosrv/audiosrv.rbuild
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- .
- advapi32
- user32
- setupapi
- main.c
- pnp_list_manager.c
- pnp_list_lock.c
- pnp.c
- services.c
- debug.c
- audiosrv.rc
- audiosrv.h
-
diff --git a/reactos/base/services/eventlog/eventlog.rbuild b/reactos/base/services/eventlog/eventlog.rbuild
deleted file mode 100644
index eaea162f895..00000000000
--- a/reactos/base/services/eventlog/eventlog.rbuild
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- .
- .
- ntdll
- advapi32
- eventlog_server
- rpcrt4
- pseh
- eventlog.c
- eventsource.c
- logport.c
- eventlog.rc
- rpc.c
- file.c
- eventlog.h
-
diff --git a/reactos/base/services/rpcss/rpcss.rbuild b/reactos/base/services/rpcss/rpcss.rbuild
deleted file mode 100644
index 95b29e83210..00000000000
--- a/reactos/base/services/rpcss/rpcss.rbuild
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
- .
- .
- wine
- rpcss_epm_server
- rpcss_irot_server
- rpcrt4
- advapi32
- pseh
- epmp.c
- irotp.c
- rpcss_main.c
- service_main.c
- epm.idl
- irot.idl
- rpcss.rc
-
-
- epm.idl
-
-
- irot.idl
-
-
diff --git a/reactos/base/services/services.rbuild b/reactos/base/services/services.rbuild
deleted file mode 100644
index e46bf8ff969..00000000000
--- a/reactos/base/services/services.rbuild
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/services/spoolsv/spoolsv.rbuild b/reactos/base/services/spoolsv/spoolsv.rbuild
deleted file mode 100644
index be3b2394295..00000000000
--- a/reactos/base/services/spoolsv/spoolsv.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- wine
- ntdll
- advapi32
- spoolsv.c
- spoolsv.rc
-
diff --git a/reactos/base/services/svchost/svchost.rbuild b/reactos/base/services/svchost/svchost.rbuild
deleted file mode 100644
index 831bb274155..00000000000
--- a/reactos/base/services/svchost/svchost.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- .
- advapi32
- svchost.c
- svchost.rc
-
diff --git a/reactos/base/services/tcpsvcs/tcpsvcs.rbuild b/reactos/base/services/tcpsvcs/tcpsvcs.rbuild
deleted file mode 100644
index f2b435f5aa9..00000000000
--- a/reactos/base/services/tcpsvcs/tcpsvcs.rbuild
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- .
- ws2_32
- advapi32
- tcpsvcs.c
- skelserver.c
- echo.c
- discard.c
- daytime.c
- qotd.c
- chargen.c
- tcpsvcs.rc
- log.c
- tcpsvcs.h
-
diff --git a/reactos/base/services/telnetd/telnetd.rbuild b/reactos/base/services/telnetd/telnetd.rbuild
deleted file mode 100644
index 1b17bfcb83f..00000000000
--- a/reactos/base/services/telnetd/telnetd.rbuild
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
- ..
-
- ntdll
- advapi32
- ws2_32
- wine
-
- telnetd.c
- serviceentry.c
- telnetd.rc
-
diff --git a/reactos/base/services/tftpd/tftpd.rbuild b/reactos/base/services/tftpd/tftpd.rbuild
deleted file mode 100644
index 0008cfb287e..00000000000
--- a/reactos/base/services/tftpd/tftpd.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
- ..
- ntdll
- advapi32
- ws2_32
- wine
- tftpd.cpp
-
diff --git a/reactos/base/services/thmsvc/thmsvc.rbuild b/reactos/base/services/thmsvc/thmsvc.rbuild
deleted file mode 100644
index fd18e9a6e4e..00000000000
--- a/reactos/base/services/thmsvc/thmsvc.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- uxtheme
- wine
- ntdll
- advapi32
- thmsvc.c
- thmsvc.rc
-
diff --git a/reactos/base/services/umpnpmgr/umpnpmgr.rbuild b/reactos/base/services/umpnpmgr/umpnpmgr.rbuild
deleted file mode 100644
index 9887e4eb65e..00000000000
--- a/reactos/base/services/umpnpmgr/umpnpmgr.rbuild
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- .
- .
- 0x600
- pnp_server
- ntdll
- advapi32
- rpcrt4
- pseh
- wdmguid
- userenv
- umpnpmgr.c
- umpnpmgr.rc
-
diff --git a/reactos/base/services/wlansvc/wlansvc.rbuild b/reactos/base/services/wlansvc/wlansvc.rbuild
deleted file mode 100644
index 4f656380d58..00000000000
--- a/reactos/base/services/wlansvc/wlansvc.rbuild
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- .
- .
- wlansvc_server
- ntdll
- advapi32
- rpcrt4
- pseh
- iphlpapi
- wlansvc.c
- rpcserver.c
-
diff --git a/reactos/base/setup/reactos/reactos.rbuild b/reactos/base/setup/reactos/reactos.rbuild
deleted file mode 100644
index 3eb79d0eb72..00000000000
--- a/reactos/base/setup/reactos/reactos.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- .
- gdi32
- user32
- comctl32
- setupapi
- uuid
- reactos.c
- reactos.rc
-
diff --git a/reactos/base/setup/setup.rbuild b/reactos/base/setup/setup.rbuild
deleted file mode 100644
index f9b981b6b6b..00000000000
--- a/reactos/base/setup/setup.rbuild
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/setup/setup/setup.rbuild b/reactos/base/setup/setup/setup.rbuild
deleted file mode 100644
index 07e4118c79e..00000000000
--- a/reactos/base/setup/setup/setup.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- .
- userenv
- setup.c
- setup.rc
-
diff --git a/reactos/base/setup/usetup/usetup.rbuild b/reactos/base/setup/usetup/usetup.rbuild
deleted file mode 100644
index 51f3c0386a0..00000000000
--- a/reactos/base/setup/usetup/usetup.rbuild
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- .
- .
- .
- include/reactos/drivers
- zlib
- newinflib
- ext2lib
- vfatlib
- ntdll
-
- consup.c
- devinst.c
- usetup.c
-
-
-
- console.c
- keytrans.c
-
- console.c
- fslist.c
-
- bootsup.c
- cabinet.c
- chkdsk.c
- drivesup.c
- filequeue.c
- filesup.c
- format.c
- fslist.c
- genlist.c
- inffile.c
- inicache.c
- partlist.c
- progress.c
- registry.c
- settings.c
- usetup.rc
- mui.c
-
diff --git a/reactos/base/setup/vmwinst/vmwinst.rbuild b/reactos/base/setup/vmwinst/vmwinst.rbuild
deleted file mode 100644
index ce056c35d94..00000000000
--- a/reactos/base/setup/vmwinst/vmwinst.rbuild
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- .
- advapi32
- comctl32
- comdlg32
- newdev
- user32
- setupapi
- shell32
- ntdll
- pseh
- vmwinst.c
- vmwinst.rc
-
diff --git a/reactos/base/setup/welcome/welcome.rbuild b/reactos/base/setup/welcome/welcome.rbuild
deleted file mode 100644
index 910d78bb7a7..00000000000
--- a/reactos/base/setup/welcome/welcome.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- .
- gdi32
- user32
- welcome.c
- welcome.rc
-
diff --git a/reactos/base/shell/cmd/cmd.rbuild b/reactos/base/shell/cmd/cmd.rbuild
deleted file mode 100644
index 78e1a3b340c..00000000000
--- a/reactos/base/shell/cmd/cmd.rbuild
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
- include/reactos/wine
- .
-
-
- wine
- advapi32
- user32
- cmd.rc
- main.c
- precomp.h
-
- alias.c
- assoc.c
- attrib.c
- batch.c
- beep.c
- call.c
- chcp.c
- choice.c
- cls.c
- cmd.c
- cmddbg.c
- cmdinput.c
- cmdtable.c
- color.c
- console.c
- copy.c
- date.c
- del.c
- delay.c
- dir.c
- dirstack.c
- echo.c
- error.c
- filecomp.c
- for.c
- free.c
- goto.c
- history.c
- if.c
- internal.c
- label.c
- locale.c
- memory.c
- misc.c
- mklink.c
- move.c
- msgbox.c
- parser.c
- path.c
- pause.c
- prompt.c
- redir.c
- ren.c
- replace.c
- screen.c
- set.c
- setlocal.c
- shift.c
- start.c
- strtoclr.c
- time.c
- timer.c
- title.c
- type.c
- ver.c
- verify.c
- vol.c
- where.c
- window.c
-
-
-
diff --git a/reactos/base/shell/explorer-new/explorer.rbuild b/reactos/base/shell/explorer-new/explorer.rbuild
deleted file mode 100644
index 0ded92135c0..00000000000
--- a/reactos/base/shell/explorer-new/explorer.rbuild
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
- .
-
- advapi32
- gdi32
- user32
- comctl32
- ole32
- oleaut32
- shell32
- shlwapi
- uuid
- version
- precomp.h
- desktop.c
- dragdrop.c
- explorer.c
- startmnu.c
- taskband.c
- taskswnd.c
- tbsite.c
- trayntfy.c
- trayprop.c
- traywnd.c
- explorer.rc
-
diff --git a/reactos/base/shell/explorer/explorer.rbuild b/reactos/base/shell/explorer/explorer.rbuild
deleted file mode 100644
index 7d64e7f42c3..00000000000
--- a/reactos/base/shell/explorer/explorer.rbuild
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
- .
-
-
- advapi32
- gdi32
- user32
- ws2_32
- msimg32
- comctl32
- ole32
- oleaut32
- shell32
- uuid
- notifyhook
- precomp.h
-
- desktop.cpp
-
-
- searchprogram.cpp
- settings.cpp
-
-
- entries.cpp
- fatfs.cpp
- filechild.cpp
- shellfs.cpp
- mainframe.cpp
- ntobjfs.cpp
- pane.cpp
- regfs.cpp
- shellbrowser.cpp
- unixfs.cpp
- webchild.cpp
- winfs.cpp
-
-
- shellservices.cpp
- startup.c
-
-
- desktopbar.cpp
- favorites.cpp
- taskbar.cpp
- startmenu.cpp
- traynotify.cpp
- quicklaunch.cpp
-
-
- shellclasses.cpp
- utility.cpp
- window.cpp
- dragdropimpl.cpp
- shellbrowserimpl.cpp
- xmlstorage.cpp
- xs-native.cpp
-
- explorer.cpp
- i386-stub-win32.c
- explorer.rc
- --enable-stdcall-fixup
-
-explorer-cfg-template.xml
-
-
-
-
diff --git a/reactos/base/shell/explorer/notifyhook/notifyhook.rbuild b/reactos/base/shell/explorer/notifyhook/notifyhook.rbuild
deleted file mode 100644
index 909cd62433e..00000000000
--- a/reactos/base/shell/explorer/notifyhook/notifyhook.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- .
-
- user32
- notifyhook.c
- notifyhook.rc
-
diff --git a/reactos/base/shell/shell.rbuild b/reactos/base/shell/shell.rbuild
deleted file mode 100644
index efdd8f323e7..00000000000
--- a/reactos/base/shell/shell.rbuild
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/system/autochk/autochk.rbuild b/reactos/base/system/autochk/autochk.rbuild
deleted file mode 100644
index f2464aefbd7..00000000000
--- a/reactos/base/system/autochk/autochk.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- nt
- ntdll
- autochk.c
- autochk.rc
-
diff --git a/reactos/base/system/bootok/bootok.rbuild b/reactos/base/system/bootok/bootok.rbuild
deleted file mode 100644
index 341adcaff23..00000000000
--- a/reactos/base/system/bootok/bootok.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- .
- advapi32
- bootok.c
- bootok.rc
-
diff --git a/reactos/base/system/diskpart/diskpart.rbuild b/reactos/base/system/diskpart/diskpart.rbuild
deleted file mode 100644
index 1a71096feee..00000000000
--- a/reactos/base/system/diskpart/diskpart.rbuild
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
- .
-
- user32
- active.c
- add.c
- assign.c
- attach.c
- attributes.c
- automount.c
- break.c
- clean.c
- compact.c
- convert.c
- create.c
- delete.c
- detach.c
- detail.c
- diskpart.c
- expand.c
- extend.c
- filesystems.c
- format.c
- gpt.c
- help.c
- import.c
- inactive.c
- interpreter.c
- list.c
- merge.c
- offline.c
- online.c
- recover.c
- remove.c
- repair.c
- rescan.c
- retain.c
- san.c
- select.c
- setid.c
- shrink.c
- uniqueid.c
- diskpart.rc
-
\ No newline at end of file
diff --git a/reactos/base/system/expand/expand.rbuild b/reactos/base/system/expand/expand.rbuild
deleted file mode 100644
index 6e67355660f..00000000000
--- a/reactos/base/system/expand/expand.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- include/reactos/wine
- .
- lz32
- setupapi
- user32
- expand.c
- expand.rc
-
diff --git a/reactos/base/system/format/format.rbuild b/reactos/base/system/format/format.rbuild
deleted file mode 100644
index 5f29105a247..00000000000
--- a/reactos/base/system/format/format.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- ntdll
- user32
- fmifs
- format.rc
- format.c
-
diff --git a/reactos/base/system/logonui/logonui.rbuild b/reactos/base/system/logonui/logonui.rbuild
deleted file mode 100644
index d314ddbe883..00000000000
--- a/reactos/base/system/logonui/logonui.rbuild
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- .
- user32
- gdi32
- msimg32.lib
- logonui.c
- NT5design.c
- NT6design.c
- logonui.rc
-
diff --git a/reactos/base/system/lsass/lsass.rbuild b/reactos/base/system/lsass/lsass.rbuild
deleted file mode 100644
index 119e149d97c..00000000000
--- a/reactos/base/system/lsass/lsass.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- include/reactos/subsys
- advapi32
- ntdll
- lsasrv
- lsass.c
- lsass.rc
-
diff --git a/reactos/base/system/msiexec/msiexec.rbuild b/reactos/base/system/msiexec/msiexec.rbuild
deleted file mode 100644
index 228875d72c7..00000000000
--- a/reactos/base/system/msiexec/msiexec.rbuild
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- .
- include/wine
-
- uuid
- wine
- ntdll
- user32
- advapi32
- ole32
- msi
- msiexec.c
- service.c
- rsrc.rc
-
diff --git a/reactos/base/system/regsvr32/regsvr32.rbuild b/reactos/base/system/regsvr32/regsvr32.rbuild
deleted file mode 100644
index cb39613dd65..00000000000
--- a/reactos/base/system/regsvr32/regsvr32.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- .
- user32
- shell32
- ole32
- regsvr32.c
- regsvr32.rc
-
diff --git a/reactos/base/system/rundll32/rundll32.rbuild b/reactos/base/system/rundll32/rundll32.rbuild
deleted file mode 100644
index bb9241629a6..00000000000
--- a/reactos/base/system/rundll32/rundll32.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- .
- user32
- rundll32.c
- rundll32.rc
-
diff --git a/reactos/base/system/runonce/runonce.rbuild b/reactos/base/system/runonce/runonce.rbuild
deleted file mode 100644
index 9dba7660b1c..00000000000
--- a/reactos/base/system/runonce/runonce.rbuild
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- .
- advapi32
- user32
- runonce.c
- runonce.rc
-
diff --git a/reactos/base/system/services/services.rbuild b/reactos/base/system/services/services.rbuild
deleted file mode 100644
index d363b2691b3..00000000000
--- a/reactos/base/system/services/services.rbuild
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
- .
- .
- include/reactos/subsys
- scm_server
- ntdll
- user32
- advapi32
- rpcrt4
- pseh
- config.c
- database.c
- driver.c
- groupdb.c
- rpcserver.c
- services.c
- services.rc
- services.h
-
diff --git a/reactos/base/system/smss2/smss2.rbuild b/reactos/base/system/smss2/smss2.rbuild
deleted file mode 100644
index 0e53c534cc0..00000000000
--- a/reactos/base/system/smss2/smss2.rbuild
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
- .
- include/reactos/subsys
- nt
- pseh
- ntdll
- smlib
- smss.h
-
- smss.c
- crashdmp.c
- pagefile.c
- sminit.c
- smloop.c
- smsbapi.c
- smsessn.c
- smsubsys.c
- smutil.c
-
- smss.rc
-
diff --git a/reactos/base/system/subst/subst.rbuild b/reactos/base/system/subst/subst.rbuild
deleted file mode 100644
index 8b77abd857d..00000000000
--- a/reactos/base/system/subst/subst.rbuild
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- include/reactos/wine
- .
- kernel32
- user32
- subst.c
- subst.rc
-
diff --git a/reactos/base/system/system.rbuild b/reactos/base/system/system.rbuild
deleted file mode 100644
index 056e4bf7fa2..00000000000
--- a/reactos/base/system/system.rbuild
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/base/system/userinit/userinit.rbuild b/reactos/base/system/userinit/userinit.rbuild
deleted file mode 100644
index 753a8e4b666..00000000000
--- a/reactos/base/system/userinit/userinit.rbuild
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- .
- wine
- ntdll
- user32
- gdi32
- advapi32
- shell32
- shlwapi
- userinit.c
- userinit.rc
-
diff --git a/reactos/base/system/winlogon/winlogon.rbuild b/reactos/base/system/winlogon/winlogon.rbuild
deleted file mode 100644
index cc5b2a33ddc..00000000000
--- a/reactos/base/system/winlogon/winlogon.rbuild
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- .
- wine
- ntdll
- user32
- advapi32
- userenv
- secur32
- environment.c
- sas.c
- screensaver.c
- setup.c
- winlogon.c
- wlx.c
- winlogon.rc
- winlogon.h
-
diff --git a/reactos/baseaddress.rbuild b/reactos/baseaddress.rbuild
deleted file mode 100644
index 260c17e2fe8..00000000000
--- a/reactos/baseaddress.rbuild
+++ /dev/null
@@ -1,266 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/boot/armllb/armllb.rbuild b/reactos/boot/armllb/armllb.rbuild
deleted file mode 100644
index 4c4c0d9f9e3..00000000000
--- a/reactos/boot/armllb/armllb.rbuild
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-
- libcntpr
- rtl
- ./inc
-
-
-
-
- -Wl,--image-base=0x401FEFF8
-
-
-
-
-
-
- --image-base=0x80FFF000
-
-
-
-
-
- -Wl,--image-base=0xF000
-
-
- boot.s
- main.c
- crtsupp.c
- envir.c
- fw.c
-
- keyboard.c
- matrix.c
- serial.c
- time.c
- video.c
-
-
- hwinfo.c
- hwinit.c
- hwlcd.c
- hwsynkp.c
- hwtwl40x.c
- hwuart.c
-
-
-
-
- hwuart.c
- hwinfo.c
- hwinit.c
-
-
-
-
- hwclcd.c
- hwkmi.c
- hwuart.c
- hwinfo.c
- hwinit.c
-
-
-
-
- loader.c
-
-
- -fms-extensions
- -ffreestanding
- -fno-builtin
- -fno-inline
- -fno-zero-initialized-in-bss
- -Os
-
-
-
-
diff --git a/reactos/boot/boot.rbuild b/reactos/boot/boot.rbuild
deleted file mode 100644
index ff2421c0b8a..00000000000
--- a/reactos/boot/boot.rbuild
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/boot/bootdata/bootcd/bootcd.rbuild b/reactos/boot/bootdata/bootcd/bootcd.rbuild
deleted file mode 100644
index 4896a937edb..00000000000
--- a/reactos/boot/bootdata/bootcd/bootcd.rbuild
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
- isoboot
-
-
-
-
-
- isoboot
-
-
-
diff --git a/reactos/boot/bootdata/bootcdregtest/bootcdregtest.rbuild b/reactos/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
deleted file mode 100644
index f3b85391618..00000000000
--- a/reactos/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
- isobtrt
- unattend.inf
-
diff --git a/reactos/boot/bootdata/bootdata.rbuild b/reactos/boot/bootdata/bootdata.rbuild
deleted file mode 100644
index 205bcefc192..00000000000
--- a/reactos/boot/bootdata/bootdata.rbuild
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
- autorun.inf
- icon.ico
- readme.txt
- bootcd.ini
-
- hivecls_$(ARCH).inf
- hivedef_$(ARCH).inf
- hivesft_$(ARCH).inf
- hivesys_$(ARCH).inf
- txtsetup.sif
- unattend.inf
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/boot/bootdata/livecd/livecd.rbuild b/reactos/boot/bootdata/livecd/livecd.rbuild
deleted file mode 100644
index 8a04d1289bc..00000000000
--- a/reactos/boot/bootdata/livecd/livecd.rbuild
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
- isoboot
-
-
-
-
- isoboot
-
-
-
diff --git a/reactos/boot/bootdata/livecdregtest/livecdregtest.rbuild b/reactos/boot/bootdata/livecdregtest/livecdregtest.rbuild
deleted file mode 100644
index 52836fabe65..00000000000
--- a/reactos/boot/bootdata/livecdregtest/livecdregtest.rbuild
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
- isobtrt
-
\ No newline at end of file
diff --git a/reactos/boot/freeldr/bootsect/bootsect.rbuild b/reactos/boot/freeldr/bootsect/bootsect.rbuild
deleted file mode 100644
index 0a6be4b63be..00000000000
--- a/reactos/boot/freeldr/bootsect/bootsect.rbuild
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
- dosmbr.asm
-
-
-
- ext2.asm
-
-
-
- fat32.asm
-
-
-
- fat.asm
-
-
-
- isoboot.asm
-
-
-
- isobtrt.asm
-
-
diff --git a/reactos/boot/freeldr/fdebug/fdebug.rbuild b/reactos/boot/freeldr/fdebug/fdebug.rbuild
deleted file mode 100644
index 8ae515c2f4c..00000000000
--- a/reactos/boot/freeldr/fdebug/fdebug.rbuild
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- .
- user32
- comdlg32
- gdi32
- fdebug.c
- rs232.c
- fdebug.rc
-
diff --git a/reactos/boot/freeldr/freeldr.rbuild b/reactos/boot/freeldr/freeldr.rbuild
deleted file mode 100644
index ad87a71fd22..00000000000
--- a/reactos/boot/freeldr/freeldr.rbuild
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reactos/boot/freeldr/freeldr/freeldr.rbuild b/reactos/boot/freeldr/freeldr/freeldr.rbuild
deleted file mode 100644
index 7ca1a75e734..00000000000
--- a/reactos/boot/freeldr/freeldr/freeldr.rbuild
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
- freeldr_startup
- freeldr_base64k
- freeldr_base
- freeldr_arch
- freeldr_main
- rossym
- cmlib
- rtl
- libcntpr
- ppcmmu
-
-
-
-
-
- freeldr_$(ARCH).lnk
-
- freeldr_startup
- freeldr_base64k
- freeldr_base
- freeldr_arch
- freeldr_main
- rossym
- cmlib
- rtl
- libcntpr
-
-
-
-
-
- freeldr_$(ARCH).lnk
-
- freeldr_startup
- freeldr_base64k
- freeldr_base
-
- mini_hal
-
- freeldr_arch
- freeldr_main
- rossym
- cmlib
- rtl
- libcntpr
- cportlib
-
- -static
- -lgcc
-
-
-
diff --git a/reactos/boot/freeldr/freeldr/freeldr_arch.rbuild b/reactos/boot/freeldr/freeldr/freeldr_arch.rbuild
deleted file mode 100644
index 931299d6bb1..00000000000
--- a/reactos/boot/freeldr/freeldr/freeldr_arch.rbuild
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
- include
- cache
- include
- include/reactos/libs
- include/reactos/elf
-
-
-
-
-
-
- archmach.c
- custom.c
- drivemap.c
- halstub.c
- hardware.c
- hwacpi.c
- hwapm.c
- hwdisk.c
- hwpci.c
- i386bug.c
- i386disk.c
- i386rtl.c
- i386vid.c
- machpc.c
- miscboot.c
- ntoskrnl.c
- pccons.c
- pcdisk.c
- pcmem.c
- pcrtc.c
- pcvideo.c
- machxbox.c
- xboxcons.c
- xboxdisk.c
- xboxfont.c
- xboxhw.c
- xboxi2c.c
- xboxmem.c
- xboxrtc.c
- xboxvideo.c
- winldr.c
-
-
-
-
- boot.s
- loader.c
- mach.c
- mboot.c
- ofw.c
- ofw_util.s
- ofw_calls.s
- ofwdisk.c
- ofw_method.c
- prep.c
- prep_ide.c
- prep_pci.c
- prep_vga.c
-
-
-
-
- macharm.c
-
-
-
-
-
- loader.c
- winldr.c
-
-
- hardware.c
- hwacpi.c
- hwapm.c
- hwpci.c
- i386rtl.c
- i386disk.c
- i386vid.c
- machpc.c
- pccons.c
- pcdisk.c
- pcmem.c
- pcrtc.c
- pcvideo.c
-
-
-
-
-
- winldr.c
-
-
-
-
diff --git a/reactos/boot/freeldr/freeldr/freeldr_base.rbuild b/reactos/boot/freeldr/freeldr/freeldr_base.rbuild
deleted file mode 100644
index c9e3f1c0fa5..00000000000
--- a/reactos/boot/freeldr/freeldr/freeldr_base.rbuild
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
- include
- cache
- .
- include
-
-
-
-
- time.c
-
-
- blocklist.c
- cache.c
-
-
- rs232.c
-
-
- disk.c
- partition.c
- ramdisk.c
-
- scsiport.c
-
-
-
- ext2.c
- fat.c
- fs.c
- iso.c
- ntfs.c
- pxe.c
-
-
- ini_init.c
- inifile.c
- parse.c
-
-
- heap_new.c
- meminit.c
- mm.c
-
-
- registry.c
- arcname.c
- archwsup.c
- binhive.c
-
-
- libsupp.c
-
-
- directui.c
- gui.c
- minitui.c
- noui.c
- tui.c
- tuimenu.c
- ui.c
-
-
- fade.c
- palette.c
- video.c
-
-
- conversion.c
- peloader.c
- winldr.c
- wlmemory.c
- wlregistry.c
-
- headless.c
-
-
- freeldr.c
- debug.c
- version.c
- cmdline.c
- machine.c
-
- freeldr.h
-
- options.c
- linuxboot.c
- oslist.c
-
diff --git a/reactos/boot/freeldr/freeldr/freeldr_base64k.rbuild b/reactos/boot/freeldr/freeldr/freeldr_base64k.rbuild
deleted file mode 100644
index 28a671a9f7f..00000000000
--- a/reactos/boot/freeldr/freeldr/freeldr_base64k.rbuild
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
- include
- include
-
-
-
-
- boot.S
- drvmap.S
- i386cpu.S
- i386idt.S
- i386pnp.S
- i386pxe.S
- i386trap.S
- int386.S
- linux.S
- mb.S
-
-
-
-
- drvmap.S
- i386cpu.S
- i386idt.S
- i386trap.S
- mb.S
-
-
-
-
diff --git a/reactos/boot/freeldr/freeldr/freeldr_main.rbuild b/reactos/boot/freeldr/freeldr/freeldr_main.rbuild
deleted file mode 100644
index f45ef931fdc..00000000000
--- a/reactos/boot/freeldr/freeldr/freeldr_main.rbuild
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- include
- include
-
- bootmgr.c
-
diff --git a/reactos/boot/freeldr/freeldr/freeldr_startup.rbuild b/reactos/boot/freeldr/freeldr/freeldr_startup.rbuild
deleted file mode 100644
index 53fd6a9d9eb..00000000000
--- a/reactos/boot/freeldr/freeldr/freeldr_startup.rbuild
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- include
- include
-
-
-
- fathelp.asm
- arch.S
-
-
-
-
- fathelp.S
- arch.S
-
-
-
-
- boot.s
-
-
-
-
diff --git a/reactos/boot/freeldr/freeldr/setupldr.rbuild b/reactos/boot/freeldr/freeldr/setupldr.rbuild
deleted file mode 100644
index b14d46c73f8..00000000000
--- a/reactos/boot/freeldr/freeldr/setupldr.rbuild
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- freeldr_$(ARCH).lnk
-
- freeldr_startup
- freeldr_base64k
- freeldr_base
-
- mini_hal
-
- freeldr_arch
- setupldr_main
- rossym
- cmlib
- cportlib
- rtl
- libcntpr
-
- -static
- -lgcc
-
-
diff --git a/reactos/boot/freeldr/freeldr/setupldr_main.rbuild b/reactos/boot/freeldr/freeldr/setupldr_main.rbuild
deleted file mode 100644
index 220c8cce4a9..00000000000
--- a/reactos/boot/freeldr/freeldr/setupldr_main.rbuild
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- include
- include
-
-
- bootmgr.c
-
- inffile.c
-
-
- setupldr.c
-
-
diff --git a/reactos/boot/freeldr/install/installfreeldr.rbuild b/reactos/boot/freeldr/install/installfreeldr.rbuild
deleted file mode 100644
index 81140e8715a..00000000000
--- a/reactos/boot/freeldr/install/installfreeldr.rbuild
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- .
- install.c
- volume.c
-
diff --git a/reactos/cmake/gcc.cmake b/reactos/cmake/gcc.cmake
index 55e74aeff52..866e8b7c82f 100644
--- a/reactos/cmake/gcc.cmake
+++ b/reactos/cmake/gcc.cmake
@@ -111,14 +111,7 @@ SET(CMAKE_C_COMPILE_OBJECT "${CCACHE} -o -o