blob: d8ffe9c668f1adeddf4876cce3fde83e66724045 [file] [log] [blame]
CC := gcc
CFLAGS := -g -Wall -pthread
LIBS := -lpthread
all: test01
test01: test01.c
$(CC) $(CFLAGS) -o test01 test01.c $(LIBS)
clean:
@rm -f *.o *~ test01