feat: add standalone client with FIFO command interface
This commit is contained in:
committed by
Loic Coenen (aider)
parent
5ad831f50c
commit
998406616a
10
client/makefile
Normal file
10
client/makefile
Normal file
@@ -0,0 +1,10 @@
|
||||
CC ?= gcc
|
||||
CFLAGS ?= -Wall -Wextra -g -Isrc
|
||||
LDFLAGS ?= -lncurses -lm
|
||||
|
||||
looper-client: src/tui.c main.c
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f looper-client
|
||||
Reference in New Issue
Block a user