1## Process this file with automake to produce Makefile.in
2
3AUTOMAKE_OPTIONS = foreign
4
5INCLUDES = -I$(top_srcdir)/include/share
6
7noinst_LTLIBRARIES = libutf8.la
8
9libutf8_la_SOURCES = charset.c charset.h iconvert.c utf8.c
10
11EXTRA_DIST = \
12	Makefile.lite \
13	charmaps.h \
14	makemap.c \
15	charset_test.c \
16	charsetmap.h \
17	iconvert.h \
18	utf8_static.dsp \
19	utf8_static.vcproj
20
21debug:
22	$(MAKE) all CFLAGS="@DEBUG@"
23
24profile:
25	$(MAKE) all CFLAGS="@PROFILE@"
26