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 26 27 28 29 30 31
|
##
## libassa/utils/Makefile.am
##
## $Id: Makefile.am,v 1.9 2007/05/14 19:19:50 vlg Exp $
#
MAINTAINERCLEANFILES = Makefile.in
bin_PROGRAMS = \
assa-genesis-3.5 \
assa-hexdump-3.5
noinst_PROGRAMS = bytereader
ASSADIR = ${top_srcdir}/assa
INCLUDES = -I$(top_srcdir)
LDFLAGS = -static
LDADD = $(top_builddir)/assa/libassa-@ASSA_RELEASE@.la @WIN32_EXTRA_LIBADD@
bytereader_SOURCES = bytereader.cpp
assa_genesis_3_5_SOURCES = assa-genesis.cpp
assa_hexdump_3_5_SOURCES = assa-hexdump.cpp
clean-local:
-rm -f log *.log *~ *.dat
# Disable autoheader.
AUTOHEADER=echo
|