CFLAGS+= -Wall

SRCS    = $(wildcard *.c)
TARGETS = $(patsubst %.c,%,$(SRCS))

all: $(TARGETS)

install:

clean:
	rm -f $(TARGETS)
