1# process this with automake to create Makefile.in
2
3bin_PROGRAMS = mngplay mngplay-static
4
5mngplay_SOURCES = mngplay.c
6mngplay_static_SOURCES = mngplay.c
7
8mngplay_static_LDFLAGS = -static
9
10# end
11