include ../Make-config

all clean depend: Makefile.example1 Makefile.example2 \
                  Makefile.example3 Makefile.example4
	$(MAKE) -f Makefile.example1 $@
	$(MAKE) -f Makefile.example2 $@
	$(MAKE) -f Makefile.example3 $@
	$(MAKE) -f Makefile.example4 $@

distclean: clean
	rm -f Makefile.example*

tmake:
	tmake example1.pro >Makefile.example1
	tmake example2.pro >Makefile.example2
	tmake example3.pro >Makefile.example3
	tmake example4.pro >Makefile.example4

Makefile.example1: example1.pro
	tmake example1.pro >Makefile.example1

Makefile.example2: example2.pro
	tmake example2.pro >Makefile.example2

Makefile.example3: example3.pro
	tmake example3.pro >Makefile.example3

Makefile.example4: example4.pro
	tmake example4.pro >Makefile.example4
