This commit is contained in:
Vincent Batts 2012-07-31 10:48:30 -07:00
commit 28d51f3b4d
2 changed files with 25 additions and 4 deletions

View file

@ -1,4 +1,19 @@
CFLAGS=`pkg-config --libs --cflags zlib`
unpack: unpack.c CFLAGS += $(shell pkg-config --libs --cflags zlib)
gcc -Wall $(CFLAGS) -o unpack unpack.c CFLAGS += -Wall
ifndef CC
CC = gcc
endif
APP = unpack
TMP_FILES = $(wildcard *~)
all: $(APP)
%: %.c
$(CC) $(CFLAGS) -o $@ $<
clean:
rm -rf $(APP) $(TMP_FILES)

View file

@ -298,7 +298,13 @@ if $0 == __FILE__
file.write(parent.to_json) file.write(parent.to_json)
end end
puts "Wrote:\n [%d] %s\n [%d] %s" % [File.size(txt_name), txt_name, File.size(json_name), json_name]
binary.flush # the bits need to be written before showing the size of the file
puts "Wrote:"
[txt_name, json_name, binary.path].each do |filename|
puts " [%d] %s" % [File.size(filename), filename]
end
end end
end end