DMaroo 6f3e63de05 Added Makefile for building and installing afl-plot-ui
Currently, it offers make and make clean functionality only
2021-08-06 18:41:55 +05:30

10 lines
205 B
Makefile

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