aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
blob: f44bf91ba87853c510e45f7d57b14a71937eab18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 -I../../../pd/src
LINUXPYTHONINCLUDE = -I/usr/include/python2.5
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