diff --git a/SRB2_Debug.props b/SRB2_Debug.props
deleted file mode 100644
index 74177c6ef..000000000
--- a/SRB2_Debug.props
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
- true
-
-
-
- _DEBUG;%(PreprocessorDefinitions)
-
-
- EditAndContinue
- Disabled
- _DEBUG;%(PreprocessorDefinitions)
- true
- MultiThreadedDebugDLL
- true
- All
- false
- EnableFastChecks
-
-
- Debug
- true
-
-
-
-
\ No newline at end of file
diff --git a/SRB2_Release.props b/SRB2_Release.props
deleted file mode 100644
index 905dfdcf9..000000000
--- a/SRB2_Release.props
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
- false
-
-
-
- true
- true
- NDEBUG;%(PreprocessorDefinitions)
- Full
- OnlyExplicitInline
- true
- Speed
- true
-
-
- NDEBUG;%(PreprocessorDefinitions)
-
-
- false
- DebugFastLink
- true
- true
- true
-
-
-
-
\ No newline at end of file
diff --git a/SRB2_common.props b/SRB2_common.props
deleted file mode 100644
index 0f80ceb17..000000000
--- a/SRB2_common.props
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
- $(SolutionDir)bin\VC10\$(Platform)\$(Configuration)\
- $(SolutionDir)objs\VC10\$(Platform)\$(Configuration)\$(ProjectName)\
-
-
-
- Level3
- HAVE_PNG;COMPVERSION;HAVE_BLUA;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;%(PreprocessorDefinitions)
- CompileAsC
- true
- true
- false
- true
- 4244;4267
-
-
- advapi32.lib;ws2_32.lib;%(AdditionalDependencies)
- Windows
- false
- true
-
-
-
-
- USEASM;%(PreprocessorDefinitions)
-
-
- false
-
-
- nasm -g -o $(IntDir)%(Filename).obj -f win32 "%(FullPath)"
- Compiling %(Filename).nas with NASM...
- $(IntDir)%(Filename).obj;%(Outputs)
-
-
-
-
- false
-
-
-
-
\ No newline at end of file
diff --git a/comptime.mk b/comptime.mk
deleted file mode 100644
index b5e4f7a39..000000000
--- a/comptime.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-#Add-on Makefile for wxDev-C++ project file
-SRCDIR=src
-ifdef ComSpec
-COMSPEC=$(ComSpec)
-endif
-
-all-before:
-ifdef COMSPEC
- ${RM} $(SRCDIR)\comptime.h
- comptime.bat $(SRCDIR)
-else
- ${RM} $(SRCDIR)/comptime.h
- ./comptime.sh $(SRCDIR)
-endif
-
-clean-custom:
-ifdef COMSPEC
- ${RM} $(SRCDIR)\comptime.h
-else
- ${RM} $(SRCDIR)/comptime.h
-endif
diff --git a/comptime.props b/comptime.props
deleted file mode 100644
index e727dfb1d..000000000
--- a/comptime.props
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
- "$(SolutionDir)comptime.bat" "$(ProjectDir).."
- Getting revision number from the SCM system
-
-
-
-
\ No newline at end of file
diff --git a/cpdebug.mk b/cpdebug.mk
deleted file mode 100644
index 6baedf227..000000000
--- a/cpdebug.mk
+++ /dev/null
@@ -1,32 +0,0 @@
-#Add-on Makefile for wxDev-C++ project file
-ifdef ComSpec
-COMSPEC=$(ComSpec)
-endif
-ifdef COMSPEC
-OBJCOPY=objcopy.exe
-OBJDUMP=objdump.exe
-GZIP?=gzip.exe
-else
-OBJCOPY=objcopy
-OBJDUMP=objdump
-GZIP?=gzip
-endif
-DBGNAME=$(BIN).debug
-OBJDUMP_OPTS?=--wide --source --line-numbers
-GZIP_OPTS?=-9 -f -n
-GZIP_OPT2=$(GZIP_OPTS) --rsyncable
-UPX?=upx
-UPX_OPTS?=--best --preserve-build-id
-UPX_OPTS+=-q
-
-all-after:
- $(OBJDUMP) $(OBJDUMP_OPTS) "$(BIN)" > "$(DBGNAME).txt"
- $(OBJCOPY) $(BIN) $(DBGNAME)
- $(OBJCOPY) --strip-debug $(BIN)
- -$(OBJCOPY) --add-gnu-debuglink=$(DBGNAME) $(BIN)
- -$(GZIP) $(GZIP_OPTS) "$(DBGNAME).txt"
-ifndef COMSPEC
- -$(GZIP) $(GZIP_OPT2) "$(DBGNAME).txt"
-endif
- -$(UPX) $(UPX_OPTS) $(BIN)
-