[tools] Add a few missing files to the tarball
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 10 Jun 2016 19:08:45 +0000 (21:08 +0200)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 10 Jun 2016 19:11:03 +0000 (21:11 +0200)
Those turned out to be missing when building tools/ was enabled by default.
Also ignore some stuff in .gitignore

mono/metadata/.gitignore
tools/pedump/.gitignore [new file with mode: 0644]
tools/sgen/Makefile.am

index 147fbe83a78c2ce70fb02e43b311afa43a9e9278..e4419f293228df23373567e0d873400ae7d82271 100644 (file)
@@ -1,8 +1,6 @@
 /Makefile
 /Makefile.in
 /Makefile.am
-/pedump
-/pedump.exe
 /monosn
 /monodiet
 /.libs
diff --git a/tools/pedump/.gitignore b/tools/pedump/.gitignore
new file mode 100644 (file)
index 0000000..a73a752
--- /dev/null
@@ -0,0 +1,5 @@
+/Makefile.in
+/Makefile
+/pedump
+/pedump.exe
+
index ac155b0cedfb5eb43720b5bc17a86d3250d12f46..c14346f088c28fa88b0b434d4ef80d084634e979 100644 (file)
@@ -3,16 +3,17 @@ bin_PROGRAMS = sgen-grep-binprot
 AM_CPPFLAGS =  $(GLIB_CFLAGS) -I$(top_srcdir)
 
 noinst_LIBRARIES = libsgen-grep-binprot.a libsgen-grep-binprot32p.a libsgen-grep-binprot64p.a
-libsgen_grep_binprot_a_SOURCES = sgen-grep-binprot.c
+libsgen_grep_binprot_a_SOURCES = sgen-grep-binprot.c sgen-grep-binprot.h
 libsgen_grep_binprot_a_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir)
-libsgen_grep_binprot32p_a_SOURCES = sgen-grep-binprot.c
+libsgen_grep_binprot32p_a_SOURCES = sgen-grep-binprot.c sgen-grep-binprot.h
 libsgen_grep_binprot32p_a_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) -DBINPROT_SIZEOF_VOID_P=4 -DBINPROT_HAS_HEADER
-libsgen_grep_binprot64p_a_SOURCES = sgen-grep-binprot.c
+libsgen_grep_binprot64p_a_SOURCES = sgen-grep-binprot.c sgen-grep-binprot.h
 libsgen_grep_binprot64p_a_CPPFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) -DBINPROT_SIZEOF_VOID_P=8 -DBINPROT_HAS_HEADER
 
 sgen_grep_binprot_SOURCES = \
        sgen-grep-binprot-main.c        \
-       sgen-entry-stream.c
+       sgen-entry-stream.c     \
+       sgen-entry-stream.h
 
 sgen_grep_binprot_LDADD = \
        $(GLIB_LIBS) $(LIBICONV) libsgen-grep-binprot.a libsgen-grep-binprot32p.a libsgen-grep-binprot64p.a