-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.win
More file actions
36 lines (30 loc) · 1.05 KB
/
Makefile.win
File metadata and controls
36 lines (30 loc) · 1.05 KB
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
all: clame.exe pylame1.dll pylame2.dll pylame3.dll
clame.exe: clame.c
cl /IC:\lame-3.96.1\include clame.c \
C:\lame-3.96.1\libmp3lame\Release\libmp3lame.lib \
C:\lame-3.96.1\mpglib\Release\mpglib.lib
pylame1.dll: pylame1.c clame.c
cl /LD /IC:\Python24\include \
/IC:\lame-3.96.1\include \
pylame1.c \
clame.c \
C:\Python24\libs\python24.lib \
C:\lame-3.96.1\libmp3lame\Release\libmp3lame.lib \
C:\lame-3.96.1\mpglib\Release\mpglib.lib
pylame2.dll: pylame2.c
cl /LD /IC:\Python24\include \
/IC:\lame-3.96.1\include pylame2.c \
C:\Python24\libs\python24.lib \
C:\lame-3.96.1\libmp3lame\Release\libmp3lame.lib \
C:\lame-3.96.1\mpglib\Release\mpglib.lib
pylame3.dll: pylame3.c
cl /LD /IC:\Python24\include \
/IC:\lame-3.96.1\include pylame3.c \
C:\Python24\libs\python24.lib \
C:\lame-3.96.1\libmp3lame\Release\libmp3lame.lib \
C:\lame-3.96.1\mpglib\Release\mpglib.lib
clean:
if exist clame.exe del /f clame.exe
if exist pylame1.dll del /f pylame1.dll
if exist pylame2.dll del /f pylame2.dll
if exist pylame3.dll del /f pylame3.dll