CC  = ../../bin/gccw
CXX = ../../bin/g++w
MAKE_AR = ../../bin/make_ar
RM = rm

CFLAGS   = -g $(CCXXOPTFLAGS) $(COPTFLAGS) $(INCLUDES) \
	      $(CCXXADDITIONALFLAGS) $(CADDITIONALFLAGS)
CXXFLAGS = -g $(CCXXOPTFLAGS) $(CXXOPTFLAGS) $(INCLUDES) \
	      $(CCXXADDITIONALFLAGS) $(CXXADDITIONALFLAGS)

all:

library:

library-only:

comstream-test: comstream-test.o
	$(CXX) -o comstream-test comstream-test.o $(CXXFLAGS)

clean:
	$(RM) -f *.o comstream-test

##
comstream-test.o: comstream-test.cc commandbuf.h comstream.h
