# HG changeset patch # User John Tsiombikas # Date 1500114769 -10800 # Node ID c5e5bf1769d862891a8f35e5e452314a07782459 # Parent a8988e95812052fab111a20f69a628627f47c2b3 renamed ilbm2bin -> lbm2bin, since it supports both ILBM and PBM files diff -r a8988e958120 -r c5e5bf1769d8 .hgignore --- a/.hgignore Sat Jul 15 13:31:10 2017 +0300 +++ b/.hgignore Sat Jul 15 13:32:49 2017 +0300 @@ -1,7 +1,7 @@ \.o$ \.d$ \.swp$ -^ilbm2bin$ +lbm2bin$ \.ilbm$ \.iff$ \.lbm$ diff -r a8988e958120 -r c5e5bf1769d8 Makefile --- a/Makefile Sat Jul 15 13:31:10 2017 +0300 +++ b/Makefile Sat Jul 15 13:32:49 2017 +0300 @@ -1,7 +1,7 @@ src = $(wildcard src/*.c) obj = $(src:.c=.o) -bin = ilbm2bin +bin = lbm2bin LDFLAGS = -lm diff -r a8988e958120 -r c5e5bf1769d8 README --- a/README Sat Jul 15 13:31:10 2017 +0300 +++ b/README Sat Jul 15 13:32:49 2017 +0300 @@ -1,4 +1,4 @@ -ILBM -> binary converter +LBM -> binary converter ------------------------ Converts LBM images (ILBM and PBM) to a raw binary, chunky or planar.