From 81ee454d0911f3ec00d06e69c4f5e4cf6dc06995 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Wed, 24 Aug 2011 06:31:12 +0100 Subject: [PATCH] cis: Add makefile for building CIS files from text format Most of the CIS files come from the pcmcia-cs project and are built from a text format using the pack_cis tool. In pcmcia-cs 3.2.8, apparently the last release, pack_cis had some bugs that are fatal when it is built with a current gcc and glibc. Therefore I refer to my own repackaged version that runs successfully and generates exactly the same binaries included here. Signed-off-by: Ben Hutchings --- cis/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cis/Makefile diff --git a/cis/Makefile b/cis/Makefile new file mode 100644 index 0000000..0a222f1 --- /dev/null +++ b/cis/Makefile @@ -0,0 +1,14 @@ +# The pack_cis tool from cis-tools +# . +PACK_CIS = pack_cis + +CIS_SRC := $(wildcard src/*.cis) +CIS_BIN := $(notdir $(CIS_SRC)) + +all: $(CIS_BIN) + +%.cis: src/%.cis + $(PACK_CIS) -o $@ $< + +clean: + rm -f $(CIS_BIN)