mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 09:40:10 +00:00
803ae6a62f
We dropped the '+' and the major.minor version from the pkg-config file name.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
CC ?= gcc
|
|
PKGCONFIG = $(shell which pkg-config)
|
|
CFLAGS = $(shell $(PKGCONFIG) --cflags gtk4)
|
|
LIBS = $(shell $(PKGCONFIG) --libs gtk4)
|
|
GLIB_COMPILE_RESOURCES = $(shell $(PKGCONFIG) --variable=glib_compile_resources gio-2.0)
|
|
GLIB_COMPILE_SCHEMAS = $(shell $(PKGCONFIG) --variable=glib_compile_schemas gio-2.0)
|
|
|
|
SRC = exampleapp.c exampleappwin.c exampleappprefs.c main.c
|
|
BUILT_SRC = resources.c
|
|
|
|
OBJS = $(BUILT_SRC:.c=.o) $(SRC:.c=.o)
|
|
|
|
all: exampleapp
|
|
|
|
org.gtk.exampleapp.gschema.valid: org.gtk.exampleapp.gschema.xml
|
|
$(GLIB_COMPILE_SCHEMAS) --strict --dry-run --schema-file=$< && mkdir -p $(@D) && touch $@
|
|
|
|
gschemas.compiled: org.gtk.exampleapp.gschema.valid
|
|
$(GLIB_COMPILE_SCHEMAS) .
|
|
|
|
resources.c: exampleapp.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=. --generate-dependencies exampleapp.gresource.xml)
|
|
$(GLIB_COMPILE_RESOURCES) exampleapp.gresource.xml --target=$@ --sourcedir=. --generate-source
|
|
|
|
%.o: %.c
|
|
$(CC) -c -o $(@F) $(CFLAGS) $<
|
|
|
|
exampleapp: $(OBJS) gschemas.compiled
|
|
$(CC) -o $(@F) $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f org.gtk.exampleapp.gschema.valid
|
|
rm -f gschemas.compiled
|
|
rm -f $(BUILT_SRC)
|
|
rm -f $(OBJS)
|
|
rm -f exampleapp
|