about summary refs log tree commit diff
path: root/utils/plot_ui/Makefile
blob: 7ade8a409abd12c085b4d0381623bea2dd806cb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
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