aboutsummaryrefslogtreecommitdiff
path: root/util/getpir/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/getpir/Makefile')
-rw-r--r--util/getpir/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/util/getpir/Makefile b/util/getpir/Makefile
deleted file mode 100644
index 94270f54a6..0000000000
--- a/util/getpir/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-#
-#
-
-CC=gcc
-CFLAGS=-O2 -D_GNU_SOURCE -DGETPIR -Wall
-
-all: getpir
-
-getpir: getpir.o checksum.o code_gen.o
- $(CC) $(CFLAGS) -o getpir $^
-
-checkpir: checkpir.c checksum.o irq_tables.o
- $(CC) $(CFLAGS) -o checkpir $^
-
-irq_tables.c: getpir
- ./getpir
-
-clean:
- rm -f getpir checkpir *.o *~
-
-distclean: clean
- rm -f irq_tables.o irq_tables.c
-