
CFLAGS=-Wall -g `pkg-config --cflags gtk+-2.0`
LDFLAGS=`pkg-config --libs gtk+-2.0`

APPS=listspeed-prof listspeed-fixedheight listspeed-newmodel

all: $(APPS)

clean:
	rm -f $(APPS)


