summaryrefslogtreecommitdiff
path: root/examples/application2
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2014-12-02 19:15:03 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2014-12-02 19:23:50 +0000
commit3b2cf140a22d7779e9ccf9e88fc61e775004710f (patch)
tree7d0628cf2f8146ccf6a74ece52b81ee4179e74e1 /examples/application2
parentccdcff94561802adc0e9633ddf59133a90621608 (diff)
downloadgtk+-3b2cf140a22d7779e9ccf9e88fc61e775004710f.tar.gz
Add standalone Makefile for the examples
We want to allow people to build the examples easily, without necessarily requiring them to build the whole of GTK+. https://bugzilla.gnome.org/show_bug.cgi?id=741041
Diffstat (limited to 'examples/application2')
-rw-r--r--examples/application2/Makefile.example24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/application2/Makefile.example b/examples/application2/Makefile.example
new file mode 100644
index 0000000000..971c29c990
--- /dev/null
+++ b/examples/application2/Makefile.example
@@ -0,0 +1,24 @@
+CC = gcc
+PKGCONFIG = $(shell which pkg-config)
+CFLAGS = `$(PKGCONFIG) --cflags gtk+-3.0`
+LIBS = `$(PKGCONFIG) --libs gtk+-3.0`
+GLIB_COMPILE_RESOURCES = `$(PKGCONFIG) --variable=glib_compile_resources gio-2.0`
+
+SRC = resources.c exampleapp.c exampleappwin.c main.c
+
+OBJS = $(SRC:.c=.o)
+
+all: exampleapp
+
+resources.c: exampleapp.gresource.xml window.ui
+ $(GLIB_COMPILE_RESOURCES) exampleapp.gresource.xml --target=$@ --sourcedir=. --generate-source
+
+%.o: %.c
+ $(CC) -c -o $(@F) $(CFLAGS) $<
+
+exampleapp: $(OBJS)
+ $(CC) -o $(@F) $(LIBS) $(OBJS)
+
+clean:
+ rm -f resources.c
+ rm -f $(OBJS)