aboutsummaryrefslogtreecommitdiff
path: root/deps/flac-1.3.2/src/share/utf8/Makefile.lite
diff options
context:
space:
mode:
Diffstat (limited to 'deps/flac-1.3.2/src/share/utf8/Makefile.lite')
-rw-r--r--deps/flac-1.3.2/src/share/utf8/Makefile.lite25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/flac-1.3.2/src/share/utf8/Makefile.lite b/deps/flac-1.3.2/src/share/utf8/Makefile.lite
new file mode 100644
index 0000000..ad50492
--- /dev/null
+++ b/deps/flac-1.3.2/src/share/utf8/Makefile.lite
@@ -0,0 +1,25 @@
+#
+# GNU makefile
+#
+
+topdir = ../../..
+libdir = $(topdir)/objs/$(BUILD)/lib
+
+LIB_NAME = libutf8
+
+ifeq ($(OS),Darwin)
+ EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(ICONV_LIBS)
+else
+ LIBS = -lgrabbag $(ICONV_LIBS)
+endif
+
+INCLUDES = -I$(topdir)/include
+
+SRCS_C = \
+ charset.c \
+ iconvert.c \
+ utf8.c
+
+include $(topdir)/build/lib.mk
+
+# DO NOT DELETE THIS LINE -- make depend depends on it.