shoreline/tests/llist/Makefile
2018-01-03 02:57:36 +01:00

11 lines
131 B
Makefile

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