summaryrefslogtreecommitdiff
path: root/sys/dev/microcode/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/microcode/tools/Makefile')
-rw-r--r--sys/dev/microcode/tools/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/dev/microcode/tools/Makefile b/sys/dev/microcode/tools/Makefile
new file mode 100644
index 00000000000..c7fedf1d5e3
--- /dev/null
+++ b/sys/dev/microcode/tools/Makefile
@@ -0,0 +1,14 @@
+# $NetBSD: Makefile,v 1.1 2008/05/04 23:50:32 ad Exp $
+
+BIN= bin2blob array2bin
+
+all: ${BIN}
+
+bin2blob: bin2blob.c
+ cc -Wall -O2 -lz -o bin2blob bin2blob.c
+
+array2bin: array2bin.c
+ cc -Wall -O2 -lz -o array2bin array2bin.c
+
+clean:
+ rm -f ${BIN} *~