#
# Simple development makefile
#

#
# add more flags here,
# but don't remove the "+="
#
CFLAGS += -O2 -g -Wall #-Wsign-compare -Wfloat-equal -Wformat-security #-Werror
CPPFLAGS +=
LDFLAGS +=


test1directfb: test1directfb.c
	$(CC) $^ -Wall `pkg-config --cflags --libs directfb ` -o $@

clean:
	-rm -f test1directfb

install:


.PHONY: all install clean

# end of development makefile
