aboutsummaryrefslogtreecommitdiff
path: root/deps/flac-1.3.2/src/share/grabbag/Makefile.lite
blob: 6c8ff6c77708b286faf9539a4aa876290a24e927 (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
25
26
27
28
29
30
#  grabbag - Convenience lib for various routines common to several tools

#
# GNU makefile
#

topdir = ../../..
libdir = $(topdir)/objs/$(BUILD)/lib

ifeq ($(OS),Darwin)
    EXPLICIT_LIBS = $(libdir)/libFLAC.a $(libdir)/libreplaygain_analysis.a $(OGG_EXPLICIT_LIBS) -lm
else
    LIBS = -lFLAC -lreplaygain_analysis $(OGG_LIBS) -lm
endif

LIB_NAME = libgrabbag
INCLUDES = -I$(topdir)/include

SRCS_C = \
	alloc.c \
	cuesheet.c \
	file.c \
	picture.c \
	replaygain.c \
	seektable.c \
	snprintf.c

include $(topdir)/build/lib.mk

# DO NOT DELETE THIS LINE -- make depend depends on it.