1#
2# GNU makefile
3#
4
5topdir = ../../..
6
7ifeq ($(OS),Darwin)
8    EXPLICIT_LIBS = $(libdir)/libFLAC.a $(OGG_EXPLICIT_LIBS) -lm
9else
10    LIBS = -lFLAC $(OGG_LIBS) -lm
11endif
12
13LIB_NAME = libwin_utf8_io
14INCLUDES = -I$(topdir)/include
15
16SRCS_C = \
17	win_utf8_io.c
18
19include $(topdir)/build/lib.mk
20
21# DO NOT DELETE THIS LINE -- make depend depends on it.
22