summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-01-22 03:58:51 +0000
committerRich Felker <dalias@aerifal.cx>2016-01-22 03:58:51 +0000
commit5a2e88257a1082aa2780729451833f5dc98ea4ca (patch)
treea8340dff6b80b663928c45dab79f3bce221d46f3 /Makefile
parent4de1bc1164ef40655caa148eeb50365112210561 (diff)
downloadmusl-5a2e88257a1082aa2780729451833f5dc98ea4ca.tar.gz
remove arch/$(ARCH)/src from the build system
the files that used to come from extra src dirs under the arch dir have all been removed or moved to appropriate places under the main src tree.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b68d6f1b..3a60cfc0 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ includedir = $(prefix)/include
libdir = $(prefix)/lib
syslibdir = /lib
-BASE_SRCS = $(sort $(wildcard $(srcdir)/src/*/*.c $(srcdir)/arch/$(ARCH)/src/*.[csS]))
+BASE_SRCS = $(sort $(wildcard $(srcdir)/src/*/*.c))
BASE_OBJS = $(patsubst $(srcdir)/%,%.o,$(basename $(BASE_SRCS)))
ARCH_SRCS = $(wildcard $(srcdir)/src/*/$(ARCH)/*.[csS])
ARCH_OBJS = $(patsubst $(srcdir)/%,%.o,$(basename $(ARCH_SRCS)))