remove arch/$(ARCH)/src from the build system
authorRich Felker <dalias@aerifal.cx>
Fri, 22 Jan 2016 03:58:51 +0000 (03:58 +0000)
committerRich Felker <dalias@aerifal.cx>
Fri, 22 Jan 2016 03:58:51 +0000 (03:58 +0000)
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.

Makefile

index b68d6f1baaeafeaf2f0dd8d851bad06e2785c1f9..3a60cfc030ab189b154a4a9f59531d8078b2a895 100644 (file)
--- 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)))