lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 24 Sep 2010 20:49:25 +0400
From:	Dmitry Eremin-Solenikov <dbaryshkov@...il.com>
To:	linux-kernel@...r.kernel.org
Cc:	David Woodhouse <dwmw2@...radead.org>,
	linux-pcmcia@...ts.infradead.org
Subject: [PATCH 5/5] Build infrastructure for mkcis and dump_cis programs

Add Makefile and .gitignore for mkcis/dump_cis programs.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@...il.com>
---
 mkcis/.gitignore |    4 ++++
 mkcis/Makefile   |   29 +++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+), 0 deletions(-)
 create mode 100644 mkcis/.gitignore
 create mode 100644 mkcis/Makefile

diff --git a/mkcis/.gitignore b/mkcis/.gitignore
new file mode 100644
index 0000000..8d19f6d
--- /dev/null
+++ b/mkcis/.gitignore
@@ -0,0 +1,4 @@
+*.o
+mkcis
+dump_cis
+
diff --git a/mkcis/Makefile b/mkcis/Makefile
new file mode 100644
index 0000000..b7faa6f
--- /dev/null
+++ b/mkcis/Makefile
@@ -0,0 +1,29 @@
+CFLAGS = -Wall -I.
+LDFLAGS = -lm
+
+# Uncomment to regenerate flex/bison output
+# GENERATE_PARSER = 1
+
+BISON = bison
+FLEX = flex
+
+all: mkcis dump_cis
+
+dump_cis: dump_cis.o
+
+mkcis: mkcis.o mkcis-lexer.lex.o mkcis-parser.tab.o
+
+clean:
+	-rm -f mkcis dump_cis *.o
+
+mkcis-lexer.lex.o: mkcis-parser.tab.h
+
+ifeq ($(GENERATE_PARSER),1)
+mkcis-parser.tab.h: mkcis-parser.tab.c
+
+mkcis-parser.tab.c: mkcis-parser.y
+	$(BISON) -d -o $@ $<
+
+mkcis-lexer.lex.c: mkcis-lexer.l
+	$(FLEX) -o $@ $<
+endif
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ