X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=helper%2FMakefile.am;h=01a6af186789057c20324245e1366316d460f7b1;hb=refs%2Ftags%2F3.4;hp=3af1d64fef318ca7894a7e217d5fd6f372f70dca;hpb=f0893a62d46605305ae14baba6cae3eebffc6005;p=febootstrap.git diff --git a/helper/Makefile.am b/helper/Makefile.am index 3af1d64..01a6af1 100644 --- a/helper/Makefile.am +++ b/helper/Makefile.am @@ -23,13 +23,33 @@ bin_PROGRAMS = \ febootstrap_supermin_helper_SOURCES = \ helper.h \ appliance.c \ + checksum.c \ cpio.c \ ext2.c \ + ext2cpio.c \ + ext2initrd.c \ + ext2internal.h \ kernel.c \ main.c \ utils.c febootstrap_supermin_helper_CFLAGS = -Wall -I../lib -febootstrap_supermin_helper_LDADD = $(LTLIBINTL) -L../lib -lgnu +febootstrap_supermin_helper_LDADD = \ + ext2init.o -lext2fs -lcom_err $(LTLIBINTL) -L../lib -lgnu + +# init "script" used by ext2 initrd. +noinst_PROGRAMS = init +init_SOURCES = init.c +init_CFLAGS = -static +init_LDFLAGS = -static + +# http://www.doof.me.uk/2010/05/07/cute-objcopy-hack/ +ELF_DEFAULT_ARCH = $(shell $(srcdir)/elf-default-arch | gawk '{ print $$1 }') +DEFAULT_ARCH = $(shell $(srcdir)/elf-default-arch | gawk '{ print $$2 }') +ext2init.o: init + strip --strip-all $< + @file $< | grep -isq static || \ + (echo "*** error: init is not staticly linked"; exit 1) + objcopy -I binary -B $(DEFAULT_ARCH) -O $(ELF_DEFAULT_ARCH) $< $@ man_MANS = \ febootstrap-supermin-helper.8 @@ -43,11 +63,20 @@ febootstrap-supermin-helper.8: febootstrap-supermin-helper.pod --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ $< > $@ -febootstrap-supermin-helper.txt: febootstrap-supermin-helper.pod - pod2text $< > $@ +noinst_DATA = \ + $(top_builddir)/html/febootstrap-supermin-helper.8.html + +$(top_builddir)/html/febootstrap-supermin-helper.8.html: febootstrap-supermin-helper.pod + mkdir -p $(top_builddir)/html + cd $(top_builddir) && pod2html \ + --css 'pod.css' \ + --htmldir html \ + --outfile html/febootstrap-supermin-helper.8.html \ + helper/febootstrap-supermin-helper.pod endif EXTRA_DIST = \ - febootstrap-supermin-helper.8 febootstrap-supermin-helper.txt \ - febootstrap-supermin-helper.pod + febootstrap-supermin-helper.8 \ + febootstrap-supermin-helper.pod \ + elf-default-arch