--- /dev/null
+###########################################################
+# global Makefile for MagicSmoke, MinGW flavour
+# (c) Konrad Rosenbaum, 2008-9
+###########################################################
+
+######
+#global configuration
+
+#change this if Qt is not in your PATH
+QMAKE = qmake
+#eg:
+#QMAKE = C:/Qt-4.4.3/bin/qmake
+#if you want to use a non-standard spec use something like this:
+#QMAKE = qmake -spec win32-g++
+
+#change this if doxygen uses a different name or is not in your PATH
+DOXYGEN = doxygen
+
+###########################################################
+# END OF CONFIGURATION
+# No editable content below this line
+###########################################################
+
+all: server client
+
+wob: woc
+ cd wob ; ../woc/woc magicsmoke.wolf
+
+woc:
+ cd woc ; $(QMAKE)
+ cd woc ; $(MAKE)
+
+server: wob
+
+client: wob zip
+ cd src ; $(QMAKE)
+ cd src ; $(MAKE)
+
+zip:
+ cd zip ; $(QMAKE)
+ cd zip ; $(MAKE)
+
+dist:
+ @echo Distribution not implemented yet
+
+sdoc:
+ $(DOXYGEN) Doxyfile-php
+ $(DOXYGEN) Doxyfile-cpp
+
+#tell Make that the rules above are symbolic:
+.PHONY: woc wob server client sdoc zip
\ No newline at end of file
--- /dev/null
+###########################################################
+# global Makefile for MagicSmoke, Unix flavour
+# (c) Konrad Rosenbaum, 2008-9
+###########################################################
+
+######
+#global configuration
+
+#change this if Qt is not in your PATH
+QMAKE = qmake
+#eg:
+#QMAKE = /usr/local/Trolltech/Qt-4.4.3/bin/qmake
+#if you want to use a non-standard spec use something like this:
+#QMAKE = qmake -spec linux-icc-64
+
+#change this if doxygen uses a different name or is not in your PATH
+DOXYGEN = doxygen
+
+###########################################################
+# END OF CONFIGURATION
+# No editable content below this line
+###########################################################
+
+all: server client
+
+wob: woc
+ cd wob ; ../woc/woc magicsmoke.wolf
+
+woc:
+ cd woc; $(QMAKE) && $(MAKE)
+
+server: wob
+
+client: wob zip
+ cd src ; $(QMAKE) && $(MAKE)
+
+zip:
+ cd zip ; $(QMAKE) && $(MAKE)
+
+dist:
+ @echo Distribution not implemented yet
+
+sdoc:
+ $(DOXYGEN) Doxyfile-php
+ $(DOXYGEN) Doxyfile-cpp
+
+#tell Make that the rules above are symbolic:
+.PHONY: woc wob server client sdoc zip
\ No newline at end of file