-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.mk
50 lines (40 loc) · 1.98 KB
/
config.mk
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
### This is the default Makefile configuration for vitunes.
### The contents of this file are normally set by the configure.sh script.
### If you are seeing this text, then that script has *not* been run.
###
### This file controls:
### 1. Where vitunes is installed (see PREFIX, BINDER, and MANDIR below)
### 2. What capability vitunes will be compiled with (e.g. will gstreamer
### support be included? what will be the default media backend?)
###
### The configure.sh script, when run, will replace the contents of this
### file with what it detects to be most appropriate, based on your
### operating system and what is installed.
###
### The default contents of this file may not be suited to your OS & setup.
### Please run the configure.sh script.
# XXX
# Changes to this file are untracked by git via:
# git update-index --assume-unchanged config.mk
# to undo:
# git update-index --no-assume-unchanged config.mk
#######################################################################
### Install Locations. These control where vitunes is installed.
### Defaults are fine for Open/Free/Net BSD.
#######################################################################
PREFIX = /usr/local
BINDIR = $(PREFIX)/bin
MANDIR = $(PREFIX)/man/man1
#######################################################################
### TagLib configuration. TagLib is required to build and run vitunes.
### Defaults should be fine as long as TagLib is installed.
#######################################################################
TAGLIB_CFLAGS = `pkg-config taglib --cflags`
TAGLIB_LIBS = `pkg-config taglib --libs` -ltag_c
#######################################################################
### Defaults should be fine as long as gstreamer is installed.
#######################################################################
#GSTREAMER_CFLAGS = `pkg-config gstreamer-0.10 --cflags` -DENABLE_GSTREAMER
#GSTREAMER_LIBS = `pkg-config gstreamer-0.10 --libs`
#GSTREAMER_OBJS = gstplayer.o
### eof