aboutsummaryrefslogtreecommitdiff
path: root/deps/flac-1.3.2/src/share/grabbag/Makefile.lite
diff options
context:
space:
mode:
Diffstat (limited to 'deps/flac-1.3.2/src/share/grabbag/Makefile.lite')
-rw-r--r--deps/flac-1.3.2/src/share/grabbag/Makefile.lite30
1 files changed, 30 insertions, 0 deletions
diff --git a/deps/flac-1.3.2/src/share/grabbag/Makefile.lite b/deps/flac-1.3.2/src/share/grabbag/Makefile.lite
new file mode 100644
index 0000000..6c8ff6c
--- /dev/null
+++ b/deps/flac-1.3.2/src/share/grabbag/Makefile.lite
@@ -0,0 +1,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.