mirror of
https://github.com/TobleMiner/shoreline.git
synced 2025-02-23 07:53:59 +01:00
11 lines
131 B
Makefile
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
|