mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-23 14:34:25 +00:00
Added Makefile for building and installing afl-plot-ui
Currently, it offers make and make clean functionality only
This commit is contained in:
10
utils/plot_ui/Makefile
Normal file
10
utils/plot_ui/Makefile
Normal 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
|
Reference in New Issue
Block a user