#*=====================================================================*/
#*    serrano/prgm/project/bigloo/fthread/examples/Makefile            */
#*    -------------------------------------------------------------    */
#*    Author      :  Manuel Serrano                                    */
#*    Creation    :  Wed Feb 13 08:23:29 2002                          */
#*    Last change :  Tue Dec  2 14:48:51 2003 (serrano)                */
#*    Copyright   :  2002-03 Manuel Serrano                            */
#*    -------------------------------------------------------------    */
#*    Thread examples                                                  */
#*=====================================================================*/

EXAMPLES=gas gas2 gas3 http srfi18 mtracker prims trepl recette sticker

all:
	for p in $(EXAMPLES); do \
           (cd $$p; $(MAKE)); \
        done

pop:
	@for p in $(EXAMPLES); do \
           (cd $$p; $(MAKE) -s pop); \
        done
	@echo "fthread/examples/Makefile fthread/examples/README"

clean:
	for p in $(EXAMPLES); do \
           (cd $$p; $(MAKE) clean); \
        done

distclean: clean
