diff options
author | DMaroo <dhruvmaru007@gmail.com> | 2021-08-06 18:41:55 +0530 |
---|---|---|
committer | DMaroo <dhruvmaru007@gmail.com> | 2021-08-06 18:41:55 +0530 |
commit | 6f3e63de0507647719f64eec7df99f2e2f98d123 (patch) | |
tree | 60a0afcf4f94b398aaa20dfddb24b9c8a710e8d0 | |
parent | c7a93d50c438e3d6da85232e8d377b838237617b (diff) | |
download | afl++-6f3e63de0507647719f64eec7df99f2e2f98d123.tar.gz |
Added Makefile for building and installing afl-plot-ui
Currently, it offers make and make clean functionality only
-rw-r--r-- | utils/plot_ui/Makefile | 10 |
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 |