# Makefile for sample code
#
# by nsoracco@cs.ucr.edu, 10-15-2003

all:
	wc s2c

wc:
	g++ wc.cc -o wc2

s2c:
	g++ string2cstring.cc -o s2c

dist:
	tar -cjspf ../stl-talk.tar.bz2 *

clean:
	rm -f *.o wc2 s2c core*
