mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-19 00:20:09 +00:00
3b2cf140a2
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
25 lines
596 B
Makefile
25 lines
596 B
Makefile
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 app-menu.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)
|