DEPTH = .

include $(DEPTH)/Makefile.version
include $(DEPTH)/Makefile.os

include $(DEPTH)/Makefile.install.directories

ifeq ($(OPERATING_SYSTEM), Linux)
	PROGNAME ?= FreeDoko
endif
ifeq ($(OPERATING_SYSTEM), Windows)
	PROGNAME ?= FreeDoko.exe
endif

export PROGNAME


# Edited for Debian GNU/Linux.
DESTDIR = 


# compile FreeDoko and create the documentation"
.PHONY: all
all:
	@echo "short help"
	@echo ""
	@echo "make compile"
	@echo "   Create the binary and play FreeDoko from the src-directory."
	@echo ""
	@echo "make install"
	@echo "   Create the binary and install FreeDoko."
	@echo "   The paths can be changed in Makefile.directories."
	@echo ""
	@echo "make uninstall"
	@echo "   Remove the files installed by 'make install'."
	@echo ""
	@echo "make help"
	@echo "   Show help for all make targets."


# print the targets of this makefile
.PHONY: help
help :
	@echo "make targets"
	@echo "  compile          compile FreeDoko and create the documentation"
	@echo "  help             this help"
	@echo "  Version          update the Version file"
	@echo "  commit           commit the FreeDoko source by svn"
	@echo "  delete           clean the directory"
	@echo "  clean            clean the directory"
	@echo "  chmod            reset the permission flags"
	@echo "  release          create a release"
	@echo "  release_debian           create the debian packages for a release"
	@echo "  release_Windows          create the Windows installer for a release"
	@echo "  release_directory        create the directory for the release files"
	@echo "  release_data             copies the data files in the release directory"
	@echo "  release_linux_binary     creates the linux binary and copies it into the release directory"
	@echo "  release_windows_binary   copies the windows binary into the release directory"
	@echo "  release_windows_libs     copies the windows libs into the release directory"
	@echo "  release_manual   create the manual zip for a release"
	@echo "  release_source   copies all data for the release source zip in the release diretory"
	@echo "  install          creates the program and installs it into the system"
	@echo "  uninstall        delete the by 'make install' installed files"
	@echo "  CD               create the FreeDoko CD"
	@echo "  flip             transforms the text files in DOS-format"

# update the 'Version' file
Version : ChangeLog
ifeq ($(SHELLTYPE), sh)
	@echo "Version: "${VERSION}" (alpha)" >Version
	@echo "Date: "`date +%Y-%m-%d` >>Version
endif

.PHONY: compile
compile:
# compile FreeDoko and create the documentation"
	$(MAKE) Version
	$(MAKE) -C src/ FreeDoko
	$(MAKE) -C doc/ all
	@echo "---"
	@echo "* Program 'FreeDoko' created"
	@echo "* documentation created"
	@echo "finished"

# commit the FreeDoko source by svn
# updates the date of the current version in 'freedoko.cpp'
# private target
.PHONY: commit
commit :
	sed 's/^\(\s*::all_versions.push_back(new Version(.*Date(\).*\(), false));\)/\1'"`date +\"%Y, %_2m, %_2d\"`"'\2/' \
	  src/freedoko.cpp \
	  > src/f.cpp \
	  && mv -f src/f.cpp src/freedoko.cpp
	svn commit

# clean the directory
.PHONY: delete
delete : clean

# clean the directory
ifeq ($(SHELLTYPE), sh)
.PHONY: clean
clean :
	rm -f *~
	@for d in *; \
	do	if test -d $$d; \
		then	if test -e $$d/Makefile; \
			then	$(MAKE) -C $$d clean; \
			fi \
		fi \
	done
	-find . -name "core" -exec rm -f \{\} \;
	-find . -name ".thumbnails" -exec rm -rf \{\} \;
endif

# fixes the permission flags
ifeq ($(SHELLTYPE), sh)
.PHONY: chmod
chmod :
	find -type d -exec chmod +x \{\} \;
	chmod -R go-w .
	chmod -R a+rX .
	find . ! -type d ! -type l -exec chmod -x \{\} \;
	find -name "c" -exec chmod +x \{\} \;
	find -name "FreeDoko" -exec chmod +x \{\} \;
	find -name "*.bat" -exec chmod +x \{\} \;
	find -name "*.exe" -exec chmod +x \{\} \;
	chmod a+x data/setup/debian/*/rules
	for f in data/bin/*; do \
	  (head -n 1 $$f | grep -q '^#!') && chmod +x $$f; \
	done
	@#find . -name "*.cpp" -exec chmod -x \{\} \;
	@#find . -name "*.h" -exec chmod -x \{\} \;
endif

# create a release
# destination is ../FreeDoko_$(VERSION).release
# * source zip
# * linux tgz archive
# * windows zip archive
# * windows setup exe (see data/setup/Windows/Makefile)
# * debian package (needs debian programs) (see data/setup/debian/)
# * rpm package (from debian archive)
ifeq ($(OPERATING_SYSTEM), Linux)
.PHONY: release
release : clean
	rm -rf $(RELEASE_DEST)
	mkdir -p $(RELEASE_DEST)
#	source
	$(MAKE) release_source
#	manual
	$(MAKE) release_manual
#	simple packages
	$(MAKE) release_directory
	$(MAKE) release_data
#	- Linux
	$(MAKE) release_linux_binary
	tar czf $(RELEASE_DEST)/FreeDoko_$(VERSION).Linux.tgz -C $(RELEASE_TMP) FreeDoko_$(VERSION)
	$(RM) $(RELEASE_TMP)/FreeDoko_$(VERSION)/FreeDoko
#	- Windows
	$(MAKE) release_Windows
#	packages
	$(MAKE) release_debian

# create the debian packages
.PHONY: release_debian
release_debian:
	$(MAKE) debian_packages
	cd $(RELEASE_DEST) \
	  && rm -rf debian/ \
	  && cp -a /home/install/mirrors/FreeDoko/ debian \
	  && find debian/ -name "*.deb" ! -name "*$(VERSION)*.deb" -exec rm -f \{\} \;
	cd $(RELEASE_DEST) \
	  && cp debian/pool/non-free/FreeDoko/freedoko-nonfree_$(VERSION)*.deb . \
	  && fakeroot alien --to-rpm freedoko-nonfree_$(VERSION)*.deb
	$(RM) -r $(RELEASE_TMP)


# create the windows release
.PHONY: release_Windows
release_Windows:
	$(RM) -r $(RELEASE_TMP)
	$(MAKE) release_directory
	$(MAKE) release_data
	$(MAKE) release_windows_binary
	$(MAKE) release_windows_libs
	cd $(RELEASE_TMP) \
	  && zip -q9r $(RELEASE_DEST)/FreeDoko_$(VERSION).Windows.zip FreeDoko_$(VERSION)
	#$(RM) -r `find $(RELEASE_TMP)/FreeDoko_$(VERSION)/ -name ".svn"`
	$(MAKE) -C data/setup/Windows setup
	mv data/setup/Windows/FreeDoko_$(VERSION).Setup.exe $(RELEASE_DEST)/
	-mv data/setup/Windows/FreeDoko_$(VERSION)-dev.Setup.exe $(RELEASE_DEST)/
	$(RM) -r $(RELEASE_TMP)/FreeDoko_$(VERSION)/gtkmm_2.4_dll \
	         $(RELEASE_TMP)/FreeDoko_$(VERSION)/gnet.dll \
	         $(RELEASE_TMP)/FreeDoko_$(VERSION)/FreeDoko.exe \
	         $(RELEASE_TMP)/FreeDoko_$(VERSION)/FreeDoko.bat

# create the directory for the release files
# called by target 'release'
.PHONY: release_directory
release_directory :
	rm -rf $(RELEASE_TMP)/
	mkdir -p $(RELEASE_TMP)/FreeDoko_$(VERSION)

# copies the data files in the release directory
# 'release_directory' should be called sometime before
# called by target 'release'
.PHONY: release_data
release_data :
	$(MAKE) Version
	cp AUTHORS COPYING ChangeLog README LIESMICH Version $(RELEASE_TMP)/FreeDoko_$(VERSION)/
	$(MAKE) -C data release
	$(MAKE) -C doc release

# creates the linux binary and copies it into the release directory
# 'release_directory' should be called sometime before
# called by target 'release'
.PHONY: release_linux_binary
release_linux_binary :
	$(MAKE) -C src release_bin
	cp src/$(PROGNAME) $(RELEASE_TMP)/FreeDoko_$(VERSION)/

# copies the windows binary into the release directory
# 'release_directory' should be called sometime before
# called by target 'release'
# the windows binary is not created, it has already to exists in /mnt/Daten/FreeDoko/src
.PHONY: release_windows_binary
release_windows_binary :
	cp $(FREEDOKO_EXE) $(RELEASE_TMP)/FreeDoko_$(VERSION)/

# copy the libraries for the release files
# called by target 'release'
.PHONY: release_windows_libs
release_windows_libs :
	tar -cC data/gtkmm_2.4.dll . \
	  --exclude=.svn \
	  | tar -xC $(RELEASE_TMP)/FreeDoko_$(VERSION)/
	tar -cC data/gnet.dll . \
	  --exclude=.svn \
	  | tar -xC $(RELEASE_TMP)/FreeDoko_$(VERSION)/
	cp /mnt/Windows/MinGW32/bin/boost*.dll $(RELEASE_TMP)/FreeDoko_$(VERSION)/

# create the manual zip for a release
# called by target 'release'
.PHONY: release_manual
release_manual :
	$(MAKE) release_directory
	mkdir $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/
	tar -c --exclude=.svn doc/manual \
	  | tar -xC $(RELEASE_TMP)/FreeDoko_$(VERSION)/
	mkdir $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/manual/de/docs
	make -C doc/de/ pdf
	cp doc/de/FreeDoko_Regeln.pdf \
       	   doc/de/Kurzregeln.pdf \
	   doc/de/DDV_Turnierregeln.pdf \
	   doc/de/DDV_Kurzregeln.pdf \
	   $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/manual/de/docs/
	# zip archive
	cd $(RELEASE_TMP); \
	  zip -q9r \
	    $(RELEASE_DEST)/FreeDoko_$(VERSION).manual.zip \
	    FreeDoko_$(VERSION)/doc/manual

# copies all data for the release source zip in the release diretory
# called by target 'release'
.PHONY: release_source
release_source :
	$(MAKE) release_directory
	$(MAKE) release_data
#	source (only svn files)
	for f in `svn status -v Makefile* src/ | grep -v "^[?D]" | awk '{print $$NF}'`; do \
	  if [ -d $$f ]; then \
	    mkdir $(RELEASE_TMP)/FreeDoko_$(VERSION)/$$f; \
	  else \
	    cp $$f $(RELEASE_TMP)/FreeDoko_$(VERSION)/$$f; \
	  fi; \
	done
#	documentation
	cp doc/Makefile $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/
	cp doc/Makefile.latex $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/
	for d in de en; do \
	  $(MAKE) -C doc/$$d clean; \
	  $(RM) -r $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/$$d; \
	  cp -a doc/$$d $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/; \
	  $(RM) -r `find $(RELEASE_TMP)/FreeDoko_$(VERSION)/doc/$$d -name ".svn"`; \
	done
#	data
	mkdir -p $(RELEASE_TMP)/FreeDoko_$(VERSION)/data
#         remove non-free cardsets
	for d in $(RELEASE_TMP)/FreeDoko_$(VERSION)/cardsets/*; do \
	  if [ -d $$d -a `basename $$d` != "xskat" ]; then \
	    $(RM) -r $$d; \
	  fi; \
	done
	for d in logo.png icon.png translations rules ai cardsets backgrounds sounds; do \
	  mv $(RELEASE_TMP)/FreeDoko_$(VERSION)/$$d $(RELEASE_TMP)/FreeDoko_$(VERSION)/data/; \
	done
#         copy makefiles
	for d in cardsets backgrounds; do \
	  cp data/$$d/Makefile $(RELEASE_TMP)/FreeDoko_$(VERSION)/data/$$d/; \
	done
	for f in Makefile bin setup; do\
	  cp -a data/$$f $(RELEASE_TMP)/FreeDoko_$(VERSION)/data/;\
	  $(RM) -r `find $(RELEASE_TMP)/FreeDoko_$(VERSION)/data/ -name ".svn"`; \
	done;
	for d in translations rules ai cardsets backgrounds sounds; do \
	  if test -f $$d/Makefile; then \
	    cp -a data/$$d/Makefile $(RELEASE_TMP)/FreeDoko_$(VERSION)/data/$$d/;\
	  fi; \
	done;
	#chmod u+w $(RELEASE_TMP)/FreeDoko_$(VERSION) -R
	# zip archive
	cd $(RELEASE_TMP)/; \
	  $(MAKE) -C FreeDoko_$(VERSION) clean; \
	  zip -9r \
	    $(RELEASE_DEST)/FreeDoko_$(VERSION).src.zip \
	    FreeDoko_$(VERSION)
endif

# compiles the program and installs it into the system
# The directories can be changed in 'Makefile.install.directories'
ifeq ($(OPERATING_SYSTEM), Linux)
.PHONY: install
install :
	$(MAKE) \
	  --always-make \
	  "USE_UI_TEXT=false" \
	  "USE_UI_GTKMM=true" \
	  "USE_NETWORK=true" \
	  "CXXFLAGS=-Wall -Werror -Wno-parentheses -pipe -O2" \
	  "CPPFLAGS=-DRELEASE -DVERSION_DESCRIPTION='\"$(OPERATING_SYSTEM_NAME) binary\"' -DPUBLIC_DATA_DIRECTORY_VALUE='\"$(DATA_DIRECTORY)\"' -DMANUAL_DIRECTORY_VALUE='\"$(HELP_DIRECTORY)/manual\"'" \
	  -C src \
	  $(PROGNAME)
	$(MAKE) -C src strip
#	Copying the program
	echo "Copying the program"
	mkdir -p $(DESTDIR)$(BIN_DIRECTORY)
	cp src/FreeDoko $(DESTDIR)$(BIN_DIRECTORY)
	chgrp games $(DESTDIR)$(BIN_DIRECTORY)/FreeDoko
	chmod 750 $(DESTDIR)$(BIN_DIRECTORY)/FreeDoko
	cd $(DESTDIR)$(BIN_DIRECTORY) && ln -s FreeDoko freedoko
#	Copying the program files
	echo "Copying the program files"
	mkdir -p $(DESTDIR)$(DATA_DIRECTORY)
	for d in logo.png icon.png translations rules ai cardsets backgrounds sounds; do \
	  cp -a data/$$d $(DESTDIR)$(DATA_DIRECTORY)/; \
	done
	chgrp -R games $(DESTDIR)$(DATA_DIRECTORY)
	chmod -R o-rwx $(DESTDIR)$(DATA_DIRECTORY)
	chmod -R g+rX  $(DESTDIR)$(DATA_DIRECTORY)
#	Copying the documentation
#	SuSE does want the documentation in the directory
#	'/usr/share/doc/packages/freedoko' so adjust it here
	echo "Copying the documentation"
	mkdir -p $(DESTDIR)$(HELP_DIRECTORY)
	if test `basename $(HELP_DIRECTORY)` = "freedoko"; then \
	  cd $(DESTDIR)$(HELP_DIRECTORY)/.. && ln -s freedoko FreeDoko; \
	fi
	cp -a doc/* AUTHORS COPYING ChangeLog $(DESTDIR)$(HELP_DIRECTORY)/
	chgrp -R games $(DESTDIR)$(HELP_DIRECTORY)
	chmod -R o-rwx $(DESTDIR)$(HELP_DIRECTORY)
	chmod -R g+rX  $(DESTDIR)$(HELP_DIRECTORY)
	cd $(DESTDIR)$(DATA_DIRECTORY) && ln -s $(DESTDIR)$(HELP_DIRECTORY)/ doc
#	update the manual page
	echo "update the manual page"
	cd doc; \
	  docbook-to-man freedoko.sgml > freedoko.6 \
	  || docbook2man freedoko.sgml > freedoko.6
	mkdir -p $(DESTDIR)$(MAN_DIRECTORY)
	cp doc/freedoko.6 $(DESTDIR)$(MAN_DIRECTORY)/
	cd $(DESTDIR)$(MAN_DIRECTORY)/ && ln -s freedoko.6 FreeDoko.6
#	copy the icon
	echo "copy the icon"
	mkdir -p $(DESTDIR)$(ICON_DIRECTORY)
	cp src/FreeDoko.png $(DESTDIR)$(ICON_DIRECTORY)/

.PHONY: uninstall
uninstall :
	@test -f $(DESTDIR)$(BIN_DIRECTORY)/FreeDoko \
	  || (( echo "FreeDoko does not seems to be installed." && false ))
	@echo "Deleting the following files and directories:"
	@ls $(DESTDIR)$(BIN_DIRECTORY)/FreeDoko
	@ls $(DESTDIR)$(BIN_DIRECTORY)/freedoko
	@ls -d $(DESTDIR)$(DATA_DIRECTORY)
	@ls -d $(DESTDIR)$(HELP_DIRECTORY)
	@ls $(DESTDIR)$(HELP_DIRECTORY)/../FreeDoko
	@ls $(DESTDIR)$(MAN_DIRECTORY)/freedoko.6
	@ls $(DESTDIR)$(MAN_DIRECTORY)/FreeDoko.6
	@ls $(DESTDIR)$(ICON_DIRECTORY)/FreeDoko.png
	@echo "Waiting 10 seconds"
	@sleep 10
	@echo "Deleting files.."
	$(RM) $(DESTDIR)$(BIN_DIRECTORY)/FreeDoko
	$(RM) $(DESTDIR)$(BIN_DIRECTORY)/freedoko
	$(RM) $(DESTDIR)$(ICON_DIRECTORY)/FreeDoko.png
	$(RM) $(DESTDIR)$(MAN_DIRECTORY)/freedoko.6
	$(RM) $(DESTDIR)$(MAN_DIRECTORY)/FreeDoko.6
	$(RM) $(DESTDIR)$(HELP_DIRECTORY)/../FreeDoko
	$(RM) -r $(DESTDIR)$(HELP_DIRECTORY)
	$(RM) -r $(DESTDIR)$(DATA_DIRECTORY)
	@echo "...finished uninstall."
endif

# create the debian packages
# see 'data/setup/debian/Makefile'
ifeq ($(OPERATING_SYSTEM), Linux)
.PHONY: debian_packages
debian_packages :
	$(MAKE) -C data/setup/debian packages
endif

# create the FreeDoko CD 
# uses a script
# needs the release files in ../FreeDoko_$(VERSION).release
ifeq ($(OPERATING_SYSTEM), Linux)
.PHONY: CD
CD :
	./data/bin/create_cd
endif

ifeq ($(OPERATING_SYSTEM), Linux)
# copies the whole directory on an usb drive
# private target
# has absolute paths
.PHONY: usb_copy
usb_copy :
	$(MAKE) clean
	-mount /media/usbstick
	tar cz --exclude doxygen \
	     -f /media/usbstick/FreeDoko.tgz -C ../ FreeDoko

# copies the whole directory in the windows partition
# private target
# has absolute paths
.PHONY: Windows_copy
Windows_copy : clean
	-$(RM) -r /mnt/Daten/FreeDoko.bak
	-mv /mnt/Daten/FreeDoko /mnt/Daten/FreeDoko.bak
	-tar chC .. \
	     --exclude .svn \
	     --exclude doxygen \
	     --exclude FreeDoko/homepage/download \
	     FreeDoko \
	   | tar xC /mnt/Daten/
	touch -r /mnt/Windows/pagefile.sys /mnt/Daten/FreeDoko 
	#touch /mnt/Daten/FreeDoko -t `parsetest now - 2hours`
	cd /mnt/Daten/FreeDoko/src; \
	  for f in `find -name "*.cpp" -o -name "*.h"`; do \
	    if diff -q $$f ../../FreeDoko.bak/src/$$f >/dev/null; then \
	      touch $$f -r ../../FreeDoko; \
	    else \
	      touch $$f -r ../../FreeDoko.bak/src/$$f; \
	    fi \
	  done
	cd /mnt/Daten/FreeDoko/src; \
	  cp logo.nonfree.png logo.png

# update the FreeDoko directory on the windows partition
# private target
# has absolute paths
.PHONY: Windows_update
Windows_update :
	@for f in $$(find src/  -name "*.cpp" -o -name "*.h"); do \
	  if ! diff -bB $$f /mnt/Daten/FreeDoko/$$f >/dev/null; then \
	    echo "copying $$f"; \
	    cp $$f /mnt/Daten/FreeDoko/$$f; \
	  fi; \
	done

# create a backup of the whole directory
# private target
# has absolute paths
.PHONY: backup
backup : tgz

# create a backup of the whole directory
# private target
# has absolute paths
.PHONY: tgz
tgz : clean chmod
	@echo tar czf  /Sicherung/FreeDoko/$(VERSION)/FreeDoko_$(VERSION)_`date +%Y-%m-%d_%0k`.dk.tgz FreeDoko
	@cd -P ..;\
	mkdir -p /Sicherung/FreeDoko/$(VERSION);\
	tar czf /Sicherung/FreeDoko/$(VERSION)/FreeDoko_$(VERSION)_`date +%Y-%m-%d_%0k`.dk.tgz \
		--exclude "FreeDoko/src/Makefile.local" \
		FreeDoko
	@chmod a+r-w /Sicherung/FreeDoko/$(VERSION)/FreeDoko_$(VERSION)_`date +%Y-%m-%d_%0k`.dk.tgz

# create a backup of the source
# private target
# has absolute paths
.PHONY: src.tgz
src.tgz : clean chmod
	@echo tar czf /Sicherung/FreeDoko/$(VERSION)/FreeDoko_$(VERSION)_`date +%Y-%m-%d_%0k`.dk.src.tgz src ChangeLog Makefile*
	@cd -P ..;\
	mkdir -p /Sicherung/FreeDoko/$(VERSION); \
	tar czf /Sicherung/FreeDoko/$(VERSION)/FreeDoko_$(VERSION)_`date +%Y-%m-%d_%0k`.dk.src.tgz \
	     --exclude 'FreeDoko/src/Makefile.local' \
	     --exclude '.svn' \
	     FreeDoko/Makefile* \
	     FreeDoko/src/ \
	     FreeDoko/ChangeLog
	@chmod a+r-w /Sicherung/FreeDoko/$(VERSION)/FreeDoko_$(VERSION)_`date +%Y-%m-%d_%0k`.dk.src.tgz

# transforms the text files in DOS-format
.PHONY: flip
flip :
	flip -mb AUTHORS COPYING ChangeLog README* Version \
	 || unix2dos AUTHORS COPYING ChangeLog README* Version
	$(MAKE) -C src/ flip
endif
