#
# Makefile for Sofie
#

VERSION="-0.1"

all: 
	cd src;make; mv demo? ..; cd ..	
 
clean:
	rm -f demo?;rm -f src/demo? rm -f src/*.o; rm -f core; rm -f  *~; rm -f src/*~; rm -f -r src/html  

tar:
	make clean; cd ..; rm -f sofie$(VERSION).tar*; \
	 tar cf sofie$(VERSION).tar sofie$(VERSION)/*; \
	 gzip sofie$(VERSION).tar; cd sofie$(VERSION)

doc++:
	cd src;make doc++;cd ..





