mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
22b6df025e
Put OBJS before LIBS on the commandline to make things work better. https://bugzilla.gnome.org/show_bug.cgi?id=768142
27 lines
668 B
Makefile
27 lines
668 B
Makefile
CC ?= gcc
|
|
PKGCONFIG = $(shell which pkg-config)
|
|
CFLAGS = $(shell $(PKGCONFIG) --cflags gtk+-3.0)
|
|
LIBS = $(shell $(PKGCONFIG) --libs gtk+-3.0)
|
|
GLIB_COMPILE_RESOURCES = $(shell $(PKGCONFIG) --variable=glib_compile_resources gio-2.0)
|
|
|
|
SRC = exampleapp.c exampleappwin.c main.c
|
|
BUILT_SRC = resources.c
|
|
|
|
OBJS = $(BUILT_SRC:.c=.o) $(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) $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(BUILT_SRC)
|
|
rm -f $(OBJS)
|
|
rm -f exampleapp
|