From 5908f01ae39d6397955313badf2fc1ff69150685 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 10 Jan 2005 16:24:16 +0000 Subject: [PATCH] [project @ 2005-01-10 16:24:16 by simonmar] Add *.S to $(C_SRCS). Seems to do the right thing, including mkdependC. --- mk/paths.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/paths.mk b/mk/paths.mk index 5c8e891..046347a 100644 --- a/mk/paths.mk +++ b/mk/paths.mk @@ -156,7 +156,7 @@ endif # These are droppings from hsc2hs - ignore them if we see them. EXCLUDED_C_SRCS += $(patsubst %.hsc, %_hsc_make.c, $(HSC_SRCS)) -C_SRCS = $(filter-out $(EXCLUDED_C_SRCS),$(filter %.c,$(SRCS))) +C_SRCS = $(filter-out $(EXCLUDED_C_SRCS),$(filter %.c %.S,$(SRCS))) C_OBJS = $(addsuffix .$(way_)o,$(basename $(C_SRCS))) # SCRIPT_SRCS: list of raw script files (in literate form) -- 1.7.10.4