aboutsummaryrefslogtreecommitdiff
path: root/deps/flac-1.3.2/src/share/utf8/Makefile.lite
blob: ad504921be7bdc648a92d3be1ba02aac3e4e4ecb (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
#
# 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.