CFLAGS = -Wall -ggdb

TARGETS = amalgamate textfilter
OBJS = $(addsuffix .o,$(TARGETS))

all: $(TARGETS)

clean:
	$(RM) $(TARGETS) $(OBJS)

