summaryrefslogtreecommitdiffstats
path: root/make/Templates/Makefile.lib
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/Templates/Makefile.lib6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/Templates/Makefile.lib b/make/Templates/Makefile.lib
index 18baaedbaa..ebf9d66f68 100644
--- a/make/Templates/Makefile.lib
+++ b/make/Templates/Makefile.lib
@@ -19,10 +19,10 @@ CC_O_FILES=$(CC_PIECES:%=${ARCH}/%.o)
H_FILES=
-# Assembly source names, if any, go here -- minus the .s
+# Assembly source names, if any, go here -- minus the .S
S_PIECES=
-S_FILES=$(S_PIECES:%=%.s)
-S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
+S_FILES=$(S_PIECES:%=%.S)
+S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)