1## Process this file with automake to produce Makefile.in
2# Makefile.am for The Machine Emulator tmesh/:
3
4AUTOMAKE_OPTIONS = 1.4 gnu
5
6INCLUDES = -I$(top_srcdir) -I$(srcdir) -I. -D_TME_IMPL
7
8lib_LTLIBRARIES = libtmesh.la
9libtmesh_la_SOURCES = \
10	tmesh-impl.h \
11	tmesh-input.y \
12	tmesh-util.c \
13	tmesh-cmds.c
14libtmesh_la_LDFLAGS = -version-info 0:0:0
15libtmesh_la_LIBADD = $(top_builddir)/libtme/libtme.la
16
17bin_PROGRAMS = tmesh
18tmesh_LDADD = libtmesh.la $(GTK_LIBS)
19tmesh_LDFLAGS = -dlpreopen self @TME_PREOPEN@
20