File: Makefile

package info (click to toggle)
mangler 1.2.5-5.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 9,912 kB
  • sloc: ansic: 65,412; sh: 11,081; cpp: 10,805; makefile: 144
file content (17 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

all:
	cd ../libventrilo3 && make dev
	gcc -pthread -Wall -g -o mangler-jukebox -I../libventrilo3/ -I.. \
		`if pkg-config vorbisfile; then echo -n "-DHAVE_VORBIS"; fi` \
		`if pkg-config flac; then echo -n "-DHAVE_FLAC"; fi` \
		jukebox.c \
		../libventrilo3/libventrilo3.a \
		-lgsm \
		-lspeex \
		`if grep -q "HAVE_OPUS 1" ../config.h; then pkg-config --cflags --libs opus; fi` \
		-lmpg123 \
		-lspeexdsp \
		`if pkg-config vorbisfile; then echo -n "-lvorbisfile"; fi` \
		`if pkg-config flac; then echo -n "-lFLAC"; fi` \
		-lm