# This is very simple Makefile for glade_hello application.
# In real project, you will want to use real build system,
# such as automake and autoconf.

# If you have GTK+ development files installed in different location than
# system default, adjust the path after colon (":")

PKG_CONF_PATH=$(PKG_CONFIG_PATH):/usr/local/lib/pkg-config
PKG_CONFIG=`PKG_CONFIG_PATH=$(PKG_CONF_PATH) pkg-config --cflags --libs gtk+-2.0 libglade-2.0`

all: gladehello

gladehello:
	gcc $(PKG_CONFIG) -o glade_hello glade_hello.c

clean:
	rm glade_hello
