diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-04-09 12:53:27 +0200 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-04-09 12:53:27 +0200 |
commit | 3e3ff72e71e7ba1f8c8d37c47a0f1e10db7aa96f (patch) | |
tree | e87028eca75709355d2c7d17df0730fc982b3a46 /makefile | |
parent | 9c55db703b6505b1c9bd2a731a98116447d48fd3 (diff) |
Add input pipeline handling to streamer
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,8 +1,9 @@ bin:=$(notdir $(shell pwd)) -src:=$(shell ls *.c) +src:=$(wildcard *.c) obj:=$(src:.c=.o) obj+=\ + toolbox/buffer.o \ toolbox/io_muxer.o libs:=\ |