Added Makefile for building and installing afl-plot-ui

Currently, it offers make and make clean functionality only
This commit is contained in:
DMaroo
2021-08-06 18:41:55 +05:30
parent c7a93d50c4
commit 6f3e63de05

10
utils/plot_ui/Makefile Normal file
View File

@ -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