diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-09-18 21:29:59 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-09-18 22:04:07 -0400 |
commit | abf4394ae34bf25a17efb9fa560791005a6b217b (patch) | |
tree | 8717654c659deead1c8c162407cf2633ccb14ea5 /Makefile | |
parent | 727562e99082e9ed808b5ff6e02b65b9cf5b65c3 (diff) | |
download | bfs-abf4394ae34bf25a17efb9fa560791005a6b217b.tar.xz |
spawn: New posix_spawn()-like API for exec
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |