
CC = g++

CFLAGS = -Wall			 	\
	-DG_DISABLE_DEPRECATED 	 	\
	-DGDK_DISABLE_DEPRECATED 	\
	-DGDK_PIXBUF_DISABLE_DEPRECATED \
	-DGTK_DISABLE_DEPRECATED

helloworld2: helloworld2.cc helloworld2.h
	$(CC) helloworld2.cc -o helloworld2 $(CFLAGS) `pkg-config inti-1.0 --cflags --libs`

clean: 
	rm -f *.o helloworld2
