###### # # Makefile # ###### ATSCC=$(ATSHOME)/bin/atscc ###### all:: test all:: assgn3ex3 all:: assgn3ex4 all:: clean ###### test: ; atscc -o test assignment3_test.dats assignment3_solu.dats ###### assgn3ex3: assgn3ex3_solu.dats $(ATSCC) -D_ATS_GCATS -o $@ $^ assgn3ex4: assgn3ex4_solu.dats $(ATSCC) -D_ATS_GCATS -o $@ $< `pkg-config gtk+-2.0 --cflags --libs` ###### clean:: rm -f a.out rm -f *_?ats.c rm -f *_?ats.o rm -f *~ cleanall:: clean rm -f test rm -f assgn3ex3 rm -f assgn3ex4 ### end of [Makefile] ###