HLE: Merge HLE BIOS improvements from upstream
[pcsx_rearmed.git] / deps / flac-1.3.2 / src / share / grabbag / Makefile.lite
CommitLineData
ce188d4d 1# grabbag - Convenience lib for various routines common to several tools
2
3#
4# GNU makefile
5#
6
7topdir = ../../..
8libdir = $(topdir)/objs/$(BUILD)/lib
9
10ifeq ($(OS),Darwin)
11 EXPLICIT_LIBS = $(libdir)/libFLAC.a $(libdir)/libreplaygain_analysis.a $(OGG_EXPLICIT_LIBS) -lm
12else
13 LIBS = -lFLAC -lreplaygain_analysis $(OGG_LIBS) -lm
14endif
15
16LIB_NAME = libgrabbag
17INCLUDES = -I$(topdir)/include
18
19SRCS_C = \
20 alloc.c \
21 cuesheet.c \
22 file.c \
23 picture.c \
24 replaygain.c \
25 seektable.c \
26 snprintf.c
27
28include $(topdir)/build/lib.mk
29
30# DO NOT DELETE THIS LINE -- make depend depends on it.