feat: add client tests, status FIFO, and evaluation docs
This commit is contained in:
committed by
Loic Coenen (aider)
parent
998406616a
commit
791744beeb
@@ -1,10 +1,15 @@
|
||||
CC ?= gcc
|
||||
CFLAGS ?= -Wall -Wextra -g -Isrc
|
||||
LDFLAGS ?= -lncurses -lm
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -Wextra -Wpedantic -std=c11
|
||||
|
||||
looper-client: src/tui.c main.c
|
||||
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||
all: test_status_parse
|
||||
|
||||
test_status_parse: tests/test_status_parse.c
|
||||
$(CC) $(CFLAGS) -I../src -o test_status_parse tests/test_status_parse.c ../src/tui.c -lncurses
|
||||
|
||||
test: test_status_parse
|
||||
./test_status_parse
|
||||
|
||||
.PHONY: all test clean
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f looper-client
|
||||
rm -f test_status_parse
|
||||
|
||||
Reference in New Issue
Block a user