blob: d6e3bc032f7ad1c45290960b4bd2cbd690e31bf2 (
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
|
# ----------------------- NT -----------------------
.SUFFIXES: .dll
VC="C:\Program Files\Microsoft Visual Studio\Vc98"
PDNTINCLUDE = /I. /I /I..\..\pd\src /I$(VC)\include
PDNTLDIR = $(VC)\lib
all:
# externals
cd ..\..\externals\build\win && nmake
# flext
# non-standard paths in T. Grill's config-pd-*.txt files
# use need to edit config-pd-msvc.txt to get this to work
# cd ..\..\externals\grill\flext && nmake /f makefile.pd-msvc
clean:
# externals
cd ..\..\externals\build\win && nmake clean
# flext
cd ..\..\externals\grill\flext && nmake /f makefile.pd-msvc clean
|