about summary refs log tree commit diff
path: root/utils/plot_ui/Makefile
blob: b2013248c2144e9376766756b0ab00cf7c6647d3 (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