blob: ad02b4fd807b3ad09938e407df50ef4f4531ee20 [file] [log] [blame]
CFLAGS := -Wall -O -g
LDFLAGS := -lpthread
SRCS=$(wildcard *.c)
TARGETS=$(patsubst %.c,%,$(SRCS))
all: $(TARGETS)
install:
ln -f $(TARGETS) ../../../bin
clean:
rm -f $(TARGETS)