[gbrainy] Additional build files



commit 12a7c5f9f5fdd2c3d2cd6f65451b03312b501af0
Author: Jordi Mas <jmas softcatala org>
Date:   Sat Nov 21 10:41:45 2009 +0100

    Additional build files

 ChangeLog            |    1 +
 src/Core/Makefile.am |   63 ++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 0000000..9a896de
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1 @@
+use git log
diff --git a/src/Core/Makefile.am b/src/Core/Makefile.am
new file mode 100644
index 0000000..23d3a3d
--- /dev/null
+++ b/src/Core/Makefile.am
@@ -0,0 +1,63 @@
+CSFLAGS = -target:library 
+
+TARGET = ../gbrainy.Core.dll
+
+CSFILES =  \
+		Main/ArrayListIndicesRandom.cs	\
+		Main/ColorPalette.cs		\
+		Main/Defines.cs			\
+		Main/Game.cs			\
+		Main/GameManager.cs		\
+		Main/GameSession.cs		\
+		Main/GameTips.cs		\
+		Main/Memory.cs			\
+		Main/PlayerHistory.cs		\
+		Main/Preferences.cs		\
+		Main/Verbal/Analogies.cs 	\
+		Main/Verbal/AnalogiesFactory.cs	\
+		Main/Verbal/AnalogiesMultipleOptions.cs	\
+		Main/Verbal/AnalogiesPairOfWordsCompare.cs	\
+		Main/Verbal/AnalogiesPairOfWordsOptions.cs	\
+		Main/Verbal/AnalogiesQuestionAnswer.cs		\
+		Main/Verbal/Analogy.cs		\
+		Views/CountDownView.cs		\
+		Views/FinishView.cs		\
+		Views/IDrawable.cs		\
+		Views/IDrawRequest.cs		\
+		Views/ViewsControler.cs		\
+		Views/WelcomeView.cs		\
+		Platform/Unix.cs		\
+		Libraries/CairoContextEx.cs	\
+		Libraries/SVGImage.cs
+
+RES = 
+REFS =  \
+	-r:System \
+	-r:Mono.Cairo.dll		\
+	-r:Mono.Posix			\
+	 $(GBRAINY_LIBS)    		\
+	 $(MONO_ADDINS_LIBS)
+
+SRCDIR_CSFILES = $(CSFILES:%=$(srcdir)/%)
+RES_CSFLAGS = $(foreach res, $(RES), -resource:$(res))
+
+$(TARGET): $(SRCDIR_CSFILES) $(RES)
+	echo $(RES_FILES)
+	$(CSC) -out:$@ $(CSFLAGS) $(REFS) $(RES_CSFLAGS) $(SRCDIR_CSFILES)
+
+all: $(TARGET)
+
+install-data-local: $(TARGET)
+	$(mkinstalldirs) $(DESTDIR)$(pkglibdir)
+	$(INSTALL_DATA) $(TARGET) $(DESTDIR)$(pkglibdir)
+
+uninstall-local:
+	cd $(DESTDIR)$(pkglibdir) && rm -f gbrainy.Core.dll
+
+EXTRA_DIST = 			\
+	$(CSFILES) $(RES)
+
+CLEANFILES =			\
+	$(TARGET)		\
+	$(TARGET).mdb
+



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]