AFLAGS=-O

XAPPS=testvar testexten basicwin curves
MAPPS=xrowcolumn hello_motif

all :: x_tests motif_tests

x_tests     :: $(XAPPS)
motif_tests :: $(MAPPS)

$(XAPPS) ::
	gnatmake $(AFLAGS) $@

$(MAPPS) ::
	gnatmake $(AFLAGS) $@


clean ::
	rm -f *.o *.ali a.out core $(XAPPS) $(MAPPS)



