blob: 0f2d4a3978de09397ed4e2dd45a458d682a94352 (
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
|
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/include
noinst_LIBRARIES = libgrabbag.a
libgrabbag_a_SOURCES = \
cuesheet.c \
file.c \
replaygain.c \
seektable.c
EXTRA_DIST = \
Makefile.lite \
Makefile.vc \
grabbag_static.dsp
debug:
$(MAKE) all CFLAGS="@DEBUG@"
profile:
$(MAKE) all CFLAGS="@PROFILE@"
|