LLS = 	tsgels  tdgels tcgels tzgels 

all: $(LLS)

% : %.adb
	gnatmake -O2 $<

testing:
	touch Test.Out
	for file in $(LLS); do \
          echo $$file >> Test.Out; \
          ./$$file >> Test.Out; \
        done

clean:
	rm -f *.ali *.o $(LLS) core Test.Out
