diff options
Diffstat (limited to 'meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am')
| -rw-r--r-- | meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am b/meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am new file mode 100644 index 0000000000..070d57b243 --- /dev/null +++ b/meta/recipes-extended/bzip2/bzip2-1.0.5/Makefile.am | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | |||
| 2 | lib_LTLIBRARIES = libbz2.la | ||
| 3 | |||
| 4 | libbz2_la_SOURCES = blocksort.c \ | ||
| 5 | huffman.c \ | ||
| 6 | crctable.c \ | ||
| 7 | randtable.c \ | ||
| 8 | compress.c \ | ||
| 9 | decompress.c \ | ||
| 10 | bzlib.c | ||
| 11 | |||
| 12 | bin_PROGRAMS = bzip2 bzip2recover | ||
| 13 | |||
| 14 | bzip2_SOURCES = bzip2.c | ||
| 15 | bzip2_LDADD = libbz2.la | ||
| 16 | bzip2_DEPENDENCIES = libbz2.la | ||
| 17 | |||
| 18 | include_HEADERS = bzlib.h | ||
| 19 | |||
| 20 | bzip2recover_SOURCES = bzip2recover.c | ||
| 21 | bzip2recover_LDADD = libbz2.la | ||
| 22 | bzip2recover_DEPENDENCIES = libbz2.la | ||
| 23 | |||
| 24 | bin_SCRIPTS = bzgrep bzmore bzdiff | ||
| 25 | |||
| 26 | man_MANS = bzip2.1 bzgrep.1 bzmore.1 bzdiff.1 | ||
| 27 | EXTRA_DIST = $(man_MANS) | ||
| 28 | |||
| 29 | install-exec-hook: | ||
| 30 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bunzip2$(EXEEXT) | ||
| 31 | ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bzcat$(EXEEXT) | ||
| 32 | ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzegrep$(EXEEXT) | ||
| 33 | ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzfgrep$(EXEEXT) | ||
| 34 | ln -s $(bindir)/bzmore$(EXEEXT) $(DESTDIR)$(bindir)/bzless$(EXEEXT) | ||
| 35 | ln -s $(bindir)/bzdiff$(EXEEXT) $(DESTDIR)$(bindir)/bzcmp$(EXEEXT) | ||
| 36 | |||
| 37 | install-data-hook: | ||
| 38 | echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzegrep.1 | ||
| 39 | echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzfgrep.1 | ||
| 40 | echo ".so man1/bzmore.1" > $(DESTDIR)$(mandir)/man1/bzless.1 | ||
| 41 | echo ".so man1/bzdiff.1" > $(DESTDIR)$(mandir)/man1/bzcmp.1 | ||
