LIBS=-lmyutil++

all: regex
regex: regex.cc
	g++ -o regex regex.cc $(LIBS)
clean:
	rm -f *.o core regex
