CCFLAGS=
LNFLAGS=
PROG=g++

trans92 : trans92.o ti_io.o ti_sync.o ti_remote.o tifile.o
	$(PROG) $(LNFLAGS) -o trans92 trans92.o ti_io.o ti_sync.o \
                                      ti_remote.o tifile.o

trans92.o : trans92.cc ti92.h tifile.h
	$(PROG) $(CCFLAGS) -c trans92.cc


ti_io.o : ti_io.cc ti92.h
	$(PROG) $(CCFLAGS) -c ti_io.cc
ti_sync.o : ti_sync.cc ti92.h
	$(PROG) $(CCFLAGS) -c ti_sync.cc
ti_remote.o : ti_remote.cc ti92.h
	$(PROG) $(CCFLAGS) -c ti_remote.cc

tifile.o : tifile.cc tifile.h
	$(PROG) $(CCFLAGS) -c tifile.cc


clean :
	rm -f *.o
