CPPC=g++ -O3

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

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

clean :
	rm -f *.o main 

