#
#   lifeGame  by shinya okada
#

LOCAL_LIBRARIES =  -lXpm $(XLIB)

SRCS = lifeGame.c
OBJS = lifeGame.o

DEPENDFLAGS     = -f Makefile


ComplexProgramTarget(lifeGame)

clean_all:
	(make clean)
	rm -f Makefile
	rm -f Makefile.bak


backup:
	(cd ..;cp -r lifeGame /tmp)
	(cd /tmp/lifeGame;make clean_all)
	(cd /tmp;tar cf - lifeGame | gzip > lifeGame.tgz)

