lbm2bin

changeset 3:c5e5bf1769d8

renamed ilbm2bin -> lbm2bin, since it supports both ILBM and PBM files
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Jul 2017 13:32:49 +0300
parents a8988e958120
children 0b96363742d3
files .hgignore Makefile README
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/.hgignore	Sat Jul 15 13:31:10 2017 +0300
     1.2 +++ b/.hgignore	Sat Jul 15 13:32:49 2017 +0300
     1.3 @@ -1,7 +1,7 @@
     1.4  \.o$
     1.5  \.d$
     1.6  \.swp$
     1.7 -^ilbm2bin$
     1.8 +lbm2bin$
     1.9  \.ilbm$
    1.10  \.iff$
    1.11  \.lbm$
     2.1 --- a/Makefile	Sat Jul 15 13:31:10 2017 +0300
     2.2 +++ b/Makefile	Sat Jul 15 13:32:49 2017 +0300
     2.3 @@ -1,7 +1,7 @@
     2.4  src = $(wildcard src/*.c)
     2.5  obj = $(src:.c=.o)
     2.6  
     2.7 -bin = ilbm2bin
     2.8 +bin = lbm2bin
     2.9  
    2.10  LDFLAGS = -lm
    2.11  
     3.1 --- a/README	Sat Jul 15 13:31:10 2017 +0300
     3.2 +++ b/README	Sat Jul 15 13:32:49 2017 +0300
     3.3 @@ -1,4 +1,4 @@
     3.4 -ILBM -> binary converter
     3.5 +LBM -> binary converter
     3.6  ------------------------
     3.7  Converts LBM images (ILBM and PBM) to a raw binary, chunky or planar.
     3.8