summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-09-18 21:29:59 -0400
committerTavian Barnes <tavianator@tavianator.com>2018-09-18 22:04:07 -0400
commitabf4394ae34bf25a17efb9fa560791005a6b217b (patch)
tree8717654c659deead1c8c162407cf2633ccb14ea5 /Makefile
parent727562e99082e9ed808b5ff6e02b65b9cf5b65c3 (diff)
downloadbfs-abf4394ae34bf25a17efb9fa560791005a6b217b.tar.xz
spawn: New posix_spawn()-like API for exec
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cb6a4a0..fcab96f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
############################################################################
# bfs #
-# Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> #
+# Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> #
# #
# Permission to use, copy, modify, and/or distribute this software for any #
# purpose with or without fee is hereby granted. #
@@ -51,7 +51,7 @@ ALL_LDFLAGS = $(ALL_CFLAGS) $(LDFLAGS)
all: bfs
-bfs: bftw.o color.o dstring.o eval.o exec.o main.o mtab.o opt.o parse.o printf.o stat.o typo.o util.o
+bfs: bftw.o color.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
$(CC) $(ALL_LDFLAGS) $^ -o $@
sanitized: CFLAGS := -g $(WFLAGS) -fsanitize=address -fsanitize=undefined