Add support utils for tracing
[coreboot.git] / util / genprof / Makefile
diff --git a/util/genprof/Makefile b/util/genprof/Makefile
new file mode 100644 (file)
index 0000000..2ec77c9
--- /dev/null
@@ -0,0 +1,12 @@
+CC=gcc
+CFLAGS=-O2 -Wall
+
+all: genprof
+
+genprof: genprof.o
+       $(CC) $(CFLAGS) -o genprof $^
+
+clean:
+       rm -f genprof  *.o *~
+
+distclean: clean