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, 0 insertions, 30 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
deleted file mode 100644
index 6c8ff6c..0000000
--- a/deps/flac-1.3.2/src/share/grabbag/Makefile.lite
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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.