diff options
author | Kay Sievers <kay@vrfy.org> | 2013-12-21 18:14:41 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-12-21 18:14:41 +0100 |
commit | f62f515f19a21747446950561ade6bde82fa810c (patch) | |
tree | 2dbc965fbc42381ba1bf456da9fccd8e67b037f9 | |
parent | ba731cee65a58735ad575aa31a1676e08f8b9767 (diff) |
build-sys: fix dist(check)
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3c98e97..ed647c3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,9 +79,15 @@ efi_sources = \ src/efi/graphics.c \ src/efi/gummiboot.c +efi_headers = \ + src/efi/util.h \ + src/efi/console.h \ + src/efi/graphics.h + efi_cppflags = \ $(EFI_CPPFLAGS) \ -I$(top_builddir) -include config.h \ + -I$(top_srcdir)/src/efi \ -I$(EFI_INC_DIR)/efi \ -I$(EFI_INC_DIR)/efi/$(ARCH) \ -DMACHINE_TYPE_NAME=\"$(MACHINE_TYPE_NAME)\" @@ -125,7 +131,7 @@ efi_solib = $(top_builddir)/src/efi/gummiboot.so # ------------------------------------------------------------------------------ gummibootlib_DATA = $(efi_loadername) CLEANFILES += $(efi_objects) $(efi_solib) $(efi_loadername) -EXTRA_DIST += $(efi_sources) +EXTRA_DIST += $(efi_sources) $(efi_headers) $(top_builddir)/src/efi/%.o: $(top_srcdir)/src/efi/%.c @$(MKDIR_P) $(top_builddir)/src/efi/ |