diff --git a/wmake/rules/linux64AMDClang/c b/wmake/rules/linux64AMDClang/c
index bba9283dc21f68d3ffec3f17ef951a590ac2b339..008ca22f0227d9b2a3ef0082deae51a62cb881cc 100644
--- a/wmake/rules/linux64AMDClang/c
+++ b/wmake/rules/linux64AMDClang/c
@@ -1,5 +1,5 @@
 #------------------------------------------------------------------------------
-include $(GENERAL_RULES)/Clang/c
+include $(GENERAL_RULES)/AMDClang/c
 
 cARCH       = -m64
 
@@ -12,6 +12,6 @@ cFLAGS      = \
 
 ctoo        = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $< -o $@
 
-include $(GENERAL_RULES)/Clang/link-c
+include $(GENERAL_RULES)/AMDClang/link-c
 
 #------------------------------------------------------------------------------
diff --git a/wmake/rules/linux64AMDClang/c++ b/wmake/rules/linux64AMDClang/c++
index 13ddf7f566aa246508f9467a1aea93c967e5bb36..6160e6956e7190531eafc8d3355b704ea23868de 100644
--- a/wmake/rules/linux64AMDClang/c++
+++ b/wmake/rules/linux64AMDClang/c++
@@ -1,5 +1,5 @@
 #------------------------------------------------------------------------------
-include $(GENERAL_RULES)/Clang/c++
+include $(GENERAL_RULES)/AMDClang/c++
 
 c++ARCH     = -m64 -pthread
 
@@ -17,16 +17,16 @@ cxxtoo      = $(Ctoo)
 # Linking:
 
 ifneq (,$(findstring +gold,$(WM_COMPILE_CONTROL)))
-    include $(GENERAL_RULES)/Clang/link-gold-c++
+    include $(GENERAL_RULES)/AMDClang/link-gold-c++
 
 else ifneq (,$(findstring +mold,$(WM_COMPILE_CONTROL)))
-    include $(GENERAL_RULES)/Clang/link-mold-c++
+    include $(GENERAL_RULES)/AMDClang/link-mold-c++
 
 else ifneq (,$(findstring +lld,$(WM_COMPILE_CONTROL)))
-    include $(GENERAL_RULES)/Clang/link-lld-c++
+    include $(GENERAL_RULES)/AMDClang/link-lld-c++
 
 else
-    include $(GENERAL_RULES)/Clang/link-c++
+    include $(GENERAL_RULES)/AMDClang/link-c++
 endif
 
 #------------------------------------------------------------------------------
diff --git a/wmake/rules/linux64AMDClang/general b/wmake/rules/linux64AMDClang/general
index c5a32b880802164685f31b38cf1121d8f41fb2a3..29832e27af915e4e5cacd259d8c111ada11ef708 100644
--- a/wmake/rules/linux64AMDClang/general
+++ b/wmake/rules/linux64AMDClang/general
@@ -1,7 +1,7 @@
 CPP        = cpp -traditional-cpp $(GFLAGS)
 
 include $(GENERAL_RULES)/standard
-include $(GENERAL_RULES)/Clang/openmp
+include $(GENERAL_RULES)/AMDClang/openmp
 
 ifneq (,$(findstring ~openmp,$(WM_COMPILE_CONTROL)))
     include $(GENERAL_RULES)/no-openmp