
# Assumes nmstl is in your home directory; you may need
# to change this!

CXXFLAGS += -I$(HOME)/nmstl -Wall -Werror
LDFLAGS += -lpthread -lreadline -lncurses -lstdc++

examples = $(patsubst %.cc,%,$(wildcard *.cc))

all: $(examples)

$(examples): %: %.o

clean:
	rm -f $(examples) *.o

