aboutsummaryrefslogtreecommitdiff
path: root/pd/src/makefile.nt
blob: cda842f2b7e43d76f22dc5bb95d2e941c22909b4 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# Makefile for PD on MSW

all: pd gui ..\bin\pd.tk ..\bin\pdsend.exe ..\bin\pdreceive.exe


VCSDK = "C:\Program Files\Microsoft SDKs\Windows\v6.0A"
VC9 = "C:\Program Files\Microsoft Visual Studio 9.0\VC"
#VC="\Program Files\DevStudio\Vc"
INCLUDE = -I.\ -I..\Tcl\include -I\DXSDK\include -I$(VC9)\Include \
 -I$(VCSDK)\Include

LDIR = $(VCSDK)\lib
LD2 = $(VC9)\lib

LIB = /NODEFAULTLIB:libcmt /NODEFAULTLIB:oldnames /NODEFAULTLIB:libc \
    /NODEFAULTLIB:uuid $(LDIR)\kernel32.lib \
    $(LDIR)\wsock32.lib $(LDIR)\winmm.lib $(LDIR)\advapi32.lib \
    $(LDIR)\setupapi.lib ..\bin\pthreadVC.lib \
    $(LD2)\libcmt.lib $(LD2)\oldnames.lib

GLIB =  $(LIB) ..\bin\tcl84.lib ..\bin\tk84.lib
CFLAGS = /nologo /W3 /DMSW /DNT /DPD /DPD_INTERNAL /DWIN32 /DWINDOWS /Ox \
	-DPA_LITTLE_ENDIAN -DUSEAPI_MMIO -DUSEAPI_PORTAUDIO -D__i386__ -DPA19 \
        -D_CRT_SECURE_NO_WARNINGS
LFLAGS = /nologo

SYSSRC = s_audio_pa.c s_audio_pablio.c s_audio_paring.c \
    s_audio_mmio.c s_midi_pm.c

SRC = g_canvas.c g_graph.c g_text.c g_rtext.c g_array.c g_template.c g_io.c \
    g_scalar.c g_traversal.c g_guiconnect.c g_readwrite.c g_editor.c \
    g_all_guis.c g_bang.c g_hdial.c g_hslider.c g_mycanvas.c g_numbox.c \
    g_toggle.c g_vdial.c g_vslider.c g_vumeter.c \
    m_pd.c m_class.c m_obj.c m_atom.c m_memory.c m_binbuf.c \
    m_conf.c m_glob.c m_sched.c \
    s_main.c s_inter.c s_file.c s_print.c \
    s_loader.c s_path.c s_entry.c s_audio.c s_midi.c \
    d_ugen.c d_ctl.c d_arithmetic.c d_osc.c d_filter.c d_dac.c d_misc.c \
    d_math.c d_fft.c d_fft_mayer.c d_fftroutine.c d_array.c d_global.c \
    d_delay.c d_resample.c \
    x_arithmetic.c x_connective.c x_interface.c x_midi.c x_misc.c \
    x_time.c x_acoustics.c x_net.c x_qlist.c x_gui.c x_list.c d_soundfile.c \
    $(SYSSRC)

PADIR = ..\portaudio
INCPA = -I$(PADIR)\include -I$(PADIR)\src\common -I..\lib\asio
PASRC = $(PADIR)\src
SRCPA = $(PASRC)/common/pa_stream.c \
        $(PASRC)/common/pa_trace.c \
        $(PASRC)/common/pa_skeleton.c \
        $(PASRC)/common/pa_process.c \
        $(PASRC)/common/pa_front.c \
        $(PASRC)/common/pa_dither.c \
        $(PASRC)/common/pa_cpuload.c \
        $(PASRC)/common/pa_converters.c \
        $(PASRC)/common/pa_allocation.c \
        $(PASRC)/os/win/pa_win_hostapis.c \
        $(PASRC)/os/win/pa_win_util.c \
        $(PASRC)/hostapi/wmme/pa_win_wmme.c 

SRCASIO = $(PADIR)/pa_asio/pa_asio.cpp 

ASIOLIB = $(LDIR)\user32.lib $(LDIR)\gdi32.lib $(LDIR)\winspool.lib \
$(LDIR)\comdlg32.lib $(LDIR)\advapi32.lib $(LDIR)\shell32.lib \
$(LDIR)\ole32.lib $(LDIR)\oleaut32.lib $(LDIR)\uuid.lib \
$(LDIR)\odbc32.lib $(LDIR)\odbccp32.lib ..\lib\asio\asiolib.lib


PAOBJ = pa_stream.obj pa_trace.obj pa_skeleton.obj pa_process.obj \
	pa_front.obj pa_dither.obj pa_cpuload.obj pa_converters.obj \
	pa_allocation.obj pa_win_hostapis.obj pa_win_util.obj pa_asio.obj \
	pa_win_wmme.obj 
#       pa_win_wdmks.obj

PMDIR = ..\portmidi
INCPM = -I$(PMDIR)\pm_common -I$(PMDIR)\pm_win -I$(PMDIR)\porttime -DNEWBUFFER
SRCPM = $(PADIR)/pm_common/portmidi.c \
        $(PMDIR)/pm_common/pmutil.c \
        $(PMDIR)/porttime/porttime.c \
        $(PMDIR)/porttime/ptwinmm.c \
        $(PMDIR)/pm_win/pmwin.c \
        $(PMDIR)/pm_win/pmwinmm.c

PMOBJ = portmidi.obj pmutil.obj porttime.obj ptwinmm.obj pmwin.obj pmwinmm.obj

OBJC = $(SRC:.c=.obj) $(PAOBJ) $(PMOBJ)

GSRC =  t_main.c t_tkcmd.c

GOBJ = $(GSRC:.c=.obj)
.PHONY: pd gui

ALLCF = $(CFLAGS)  $(INCLUDE) $(INCASIO) $(INCPA) $(INCPM) /D_WINDOWS \
    /DPA_NO_DS

.c.obj:
	cl /c $(ALLCF) /Tc$*.c

pd: ..\bin\pd.exe ..\bin\pd.com

gui: ..\bin\pdtcl.dll

..\bin\pd.exe: s_entry.obj ..\bin\pd.lib
	link $(LFLAGS) /OUT:..\bin\pd.exe /INCREMENTAL:NO s_entry.obj \
	    ..\bin\pd.lib $(LIB) $(ASIOLIB)

..\bin\pd.dll ..\bin\pd.lib: $(OBJC) $(OBJASIO)
	link /DLL /OUT:..\bin\pd.dll /EXPORT:sys_main $(LFLAGS) $(OBJC) \
	    $(OBJASIO) $(LIB) $(ASIOLIB)

..\bin\pdtcl.dll: t_tkcmd.obj
	link $(LFLAGS) /dll /export:Pdtcl_Init /out:..\bin\pdtcl.dll \
	    t_tkcmd.obj $(GLIB)

..\bin\pd.tk: u_main.tk; copy u_main.tk ..\bin\pd.tk

..\bin\pdsend.exe: u_pdsend.obj
	link $(LFLAGS) /out:..\bin\pdsend.exe /INCREMENTAL:NO u_pdsend.obj \
	    $(LIB)

..\bin\pdreceive.exe: u_pdreceive.obj
	link $(LFLAGS) /out:..\bin\pdreceive.exe /INCREMENTAL:NO \
	    u_pdreceive.obj $(LIB)

s_entry_com.obj: s_entry.c
	copy s_entry.c s_entry_com.c
	cl /c -DCOMMANDVERSION s_entry_com.c 
	del s_entry_com.c

..\bin\pd.com: s_entry_com.obj ..\bin\pd.lib
	link $(LFLAGS) /out:..\bin\pd.com /INCREMENTAL:NO s_entry_com.obj \
	    ..\bin\pd.lib $(LIB) $(ASIOLIB)

# explicit rules to compile portaudio sources:
pa_stream.obj: $(PASRC)\common\pa_stream.c
	cl /c $(ALLCF) $(PASRC)\common\pa_stream.c
pa_trace.obj: $(PASRC)\common\pa_trace.c
	cl /c $(ALLCF) $(PASRC)\common\pa_trace.c
pa_skeleton.obj: $(PASRC)\common\pa_skeleton.c
	cl /c $(ALLCF) $(PASRC)\common\pa_skeleton.c
pa_process.obj: $(PASRC)\common\pa_process.c
	cl /c $(ALLCF) $(PASRC)\common\pa_process.c
pa_front.obj: $(PASRC)\common\pa_front.c
	cl /c $(ALLCF) $(PASRC)\common\pa_front.c
pa_dither.obj: $(PASRC)\common\pa_dither.c
	cl /c $(ALLCF) $(PASRC)\common\pa_dither.c
pa_cpuload.obj: $(PASRC)\common\pa_cpuload.c
	cl /c $(ALLCF) $(PASRC)\common\pa_cpuload.c
pa_converters.obj: $(PASRC)\common\pa_converters.c
	cl /c $(ALLCF) $(PASRC)\common\pa_converters.c
pa_allocation.obj: $(PASRC)\common\pa_allocation.c
	cl /c $(ALLCF) $(PASRC)\common\pa_allocation.c

pa_win_hostapis.obj: $(PASRC)\os\win\pa_win_hostapis.c
	cl /c $(ALLCF) $(PASRC)\os\win\pa_win_hostapis.c
pa_win_util.obj: $(PASRC)\os\win\pa_win_util.c
	cl /c $(ALLCF) $(PASRC)\os\win\pa_win_util.c
pa_win_wmme.obj: $(PASRC)\hostapi\wmme\pa_win_wmme.c
	cl /c $(ALLCF) $(PASRC)\hostapi\wmme\pa_win_wmme.c
pa_win_wdmks.obj: $(PADIR)\pa_win_wdmks\pa_win_wdmks.c
	cl /c $(ALLCF) \
	-DWINVER=0x400 -DKSAUDIO_SPEAKER_DIRECTOUT \
	$(PADIR)\pa_win_wdmks\pa_win_wdmks.c
pa_asio.obj: $(PASRC)\hostapi\asio\pa_asio.cpp
	cl /c $(ALLCF) $(PASRC)\hostapi\asio\pa_asio.cpp

portmidi.obj: $(PMDIR)\pm_common\portmidi.c
	cl /c $(ALLCF) $(PMDIR)\pm_common\portmidi.c
pmutil.obj: $(PMDIR)\pm_common\pmutil.c
	cl /c $(ALLCF) $(PMDIR)\pm_common\pmutil.c
pmwin.obj: $(PMDIR)\pm_win\pmwin.c
	cl /c $(ALLCF) $(PMDIR)\pm_win\pmwin.c
pmwinmm.obj: $(PMDIR)\pm_win\pmwinmm.c
	cl /c $(ALLCF) $(PMDIR)\pm_win\pmwinmm.c
porttime.obj: $(PMDIR)\porttime\porttime.c
	cl /c $(ALLCF) $(PMDIR)\porttime\porttime.c
ptwinmm.obj: $(PMDIR)\porttime\ptwinmm.c
	cl /c $(ALLCF) $(PMDIR)\porttime\ptwinmm.c

# the following should also clean up "bin" but it doesn't because "bin" holds
# precious stuff from elsewhere.
clean:
	del *.obj