summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-01-02 22:34:44 -0500
committerTavian Barnes <tavianator@tavianator.com>2019-01-02 22:36:39 -0500
commit5fa75d0823b66a49456790a19e203fec0bc67220 (patch)
tree0291b18aacda7cd371702e280dda1b1f3b6bd558 /Makefile
parent28c787b0dcbae9e6c7dfc0013bdaff25d0a2f009 (diff)
downloadbfs-5fa75d0823b66a49456790a19e203fec0bc67220.tar.xz
posix1e: Split out ACL and capability handling from util
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 17 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c631c35..319680c 100644
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,23 @@ ALL_LDLIBS = $(LOCAL_LDLIBS) $(LDLIBS)
all: bfs
-bfs: bftw.o color.o diag.o dstring.o eval.o exec.o main.o mtab.o opt.o parse.o printf.o spawn.o stat.o typo.o util.o
+bfs: \
+ bftw.o \
+ color.o \
+ diag.o \
+ dstring.o \
+ eval.o \
+ exec.o \
+ main.o \
+ mtab.o \
+ opt.o \
+ parse.o \
+ posix1e.o \
+ printf.o \
+ spawn.o \
+ stat.o \
+ typo.o \
+ util.o
$(CC) $(ALL_LDFLAGS) $^ $(ALL_LDLIBS) -o $@
sanitized: CFLAGS := -g $(WFLAGS) -fsanitize=address -fsanitize=undefined