CPPC=g++ 

main : dco_t2s_t1s_type.o dco_t1s_type.o main.o
	$(CPPC) -o $@ $^

%.o : %.cpp
	$(CPPC) -c $<

clean :
	rm -f *.o main 

