aboutsummaryrefslogtreecommitdiff
path: root/utils/plot_ui
diff options
context:
space:
mode:
authorDMaroo <dhruvmaru007@gmail.com>2021-08-06 18:41:55 +0530
committerDMaroo <dhruvmaru007@gmail.com>2021-08-06 18:41:55 +0530
commit6f3e63de0507647719f64eec7df99f2e2f98d123 (patch)
tree60a0afcf4f94b398aaa20dfddb24b9c8a710e8d0 /utils/plot_ui
parentc7a93d50c438e3d6da85232e8d377b838237617b (diff)
downloadAFLplusplus-6f3e63de0507647719f64eec7df99f2e2f98d123.tar.gz
Added Makefile for building and installing afl-plot-ui
Currently, it offers make and make clean functionality only
Diffstat (limited to 'utils/plot_ui')
-rw-r--r--utils/plot_ui/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/plot_ui/Makefile b/utils/plot_ui/Makefile
new file mode 100644
index 00000000..7ade8a40
--- /dev/null
+++ b/utils/plot_ui/Makefile
@@ -0,0 +1,10 @@
+CFLAGS=`pkg-config --cflags gtk+-3.0`
+LDFLAGS=`pkg-config --libs gtk+-3.0`
+
+all: afl-plot-ui
+
+afl-plot-ui: afl-plot-ui.c
+ $(CC) $(CFLAGS) -o afl-plot-ui afl-plot-ui.c $(LDFLAGS)
+
+clean:
+ rm -f afl-plot-ui \ No newline at end of file