EXE = dtc
all : $(EXE)

$(EXE): main.go def.go score.go frac.go 
	go build -o $(EXE) main.go score.go def.go frac.go 

reset:
	rm -f $(EXE)
