shoreline/tests/ringbuff/Makefile
2018-01-02 02:27:30 +01:00

11 lines
130 B
Makefile

CC=gcc
CCFLAGS=-O0 -Wall -ggdb
RM=rm -f
all: clean test
test:
$(CC) $(CCFLAGS) ../../ring.c main.c -o test
clean:
$(RM) test