forked from qwertymodo/msupcmplusplus
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·26 lines (17 loc) · 689 Bytes
/
Copy pathMakefile
File metadata and controls
executable file
·26 lines (17 loc) · 689 Bytes
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
.PHONY: all
all: libsox msupcm++/msupcm
FORCE:
clean: FORCE
$(MAKE) -C 3rdparty/sox -s clean
$(MAKE) -C msupcm++ clean
3rdparty/sox/configure: 3rdparty/sox/Makefile.am
autoreconf -i 3rdparty/sox
3rdparty/sox/Makefile: 3rdparty/sox/configure
cd 3rdparty/sox && ./configure --without-png --without-gsm --without-lpc10 --without-id3tag --without-wavpack --disable-shared --enable-static
3rdparty/sox/soxconfig.h: 3rdparty/sox/Makefile
$(MAKE) -C 3rdparty/sox -s
3rdparty/sox/src/.libs/libsox.a: 3rdparty/sox/Makefile
$(MAKE) -C 3rdparty/sox -s
libsox: 3rdparty/sox/src/.libs/libsox.a 3rdparty/sox/soxconfig.h
msupcm++/msupcm: libsox msupcm++/msupcm.cpp
$(MAKE) -C msupcm++ -s