aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-10 05:52:11 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-10 05:52:11 +0000
commitceac394c2133d44e81db2eb633ff54a9ad6ce7c5 (patch)
treeadc534407af80a976263c907897907cb13ef1c82 /src/makefile
This commit was generated by cvs2svn to compensate for changes in r3865,svn2git-root
which included commits to RCS files with non-trunk default branches. svn path=/trunk/extensions/gripd/; revision=3866
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/makefile b/src/makefile
new file mode 100644
index 0000000..8930736
--- /dev/null
+++ b/src/makefile
@@ -0,0 +1,44 @@
+#--------------------------------------------------------------
+
+current: gripd_linux
+clean: clean_linux
+
+#----------- Options (all OS) --------------------------------
+
+MIDI = TRUE
+#MIDI = FALSE
+JOYSTICK = TRUE
+#JOYSTICK = FALSE
+
+#----------- Settings (Linux) --------------------------------
+
+MIDIOSSUBTYPE = ALSA
+#MIDIOSSUBTYPE = OSS
+PDINCLUDE = -I../../src
+LINUXPYTHONINCLUDE = -I/usr/include/python2.2
+SYSTEMLIBDIR = /usr/lib
+
+#----------- Settings (Windows) -------------------------------
+
+VC = "C:\Program Files\Microsoft Visual Studio\VC98"
+PYTHONHOME = C:\python22
+PYTHONVER = 22
+PDNTSRCDIR = C:\pd-37\src
+PDNTLDIR = C:\pd-37\bin
+
+#----------- Linux --------------------------------------------
+
+gripd_linux:
+ make -f Makefile.Linux all
+clean_linux:
+ make -f Makefile.Linux linux_clean
+
+#----------- Win32---------------------------------------------
+
+gripd_nt:
+ nmake -f Makefile.NT all
+clean_nt:
+ nmake -f Makefile.NT nt_clean
+
+
+