2014-08-13 10:39:27 +01:00
|
|
|
bin_PROGRAMS = sgen-grep-binprot
|
|
|
|
|
|
|
|
AM_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
|
|
|
|
|
2018-08-07 15:19:03 +00:00
|
|
|
glib_libs = $(top_builddir)/mono/eglib/libeglib.la
|
|
|
|
|
2016-08-03 10:59:49 +00:00
|
|
|
noinst_LIBRARIES = libsgen-grep-binprot.a libsgen-grep-binprot32p.a libsgen-grep-binprot64p.a
|
2016-11-10 13:04:39 +00:00
|
|
|
libsgen_grep_binprot_a_SOURCES = sgen-grep-binprot.c sgen-grep-binprot.h
|
2016-08-03 10:59:49 +00:00
|
|
|
libsgen_grep_binprot_a_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
|
2016-11-10 13:04:39 +00:00
|
|
|
libsgen_grep_binprot32p_a_SOURCES = sgen-grep-binprot.c sgen-grep-binprot.h
|
2016-08-03 10:59:49 +00:00
|
|
|
libsgen_grep_binprot32p_a_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) -DBINPROT_SIZEOF_VOID_P=4 -DBINPROT_HAS_HEADER
|
2016-11-10 13:04:39 +00:00
|
|
|
libsgen_grep_binprot64p_a_SOURCES = sgen-grep-binprot.c sgen-grep-binprot.h
|
2016-08-03 10:59:49 +00:00
|
|
|
libsgen_grep_binprot64p_a_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) -DBINPROT_SIZEOF_VOID_P=8 -DBINPROT_HAS_HEADER
|
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
sgen_grep_binprot_SOURCES = \
|
2016-08-03 10:59:49 +00:00
|
|
|
sgen-grep-binprot-main.c \
|
2016-11-10 13:04:39 +00:00
|
|
|
sgen-entry-stream.c \
|
|
|
|
sgen-entry-stream.h
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
sgen_grep_binprot_LDADD = \
|
2018-08-07 15:19:03 +00:00
|
|
|
$(glib_libs) libsgen-grep-binprot.a libsgen-grep-binprot32p.a libsgen-grep-binprot64p.a
|