2015-05-19 15:14:49 +00:00
|
|
|
CC ?= gcc
|
2014-12-02 19:15:03 +00:00
|
|
|
PKGCONFIG = $(shell which pkg-config)
|
2019-02-05 09:27:57 +00:00
|
|
|
CFLAGS = $(shell $(PKGCONFIG) --cflags gtk4)
|
|
|
|
LIBS = $(shell $(PKGCONFIG) --libs gtk4)
|
2015-05-19 15:14:49 +00:00
|
|
|
GLIB_COMPILE_RESOURCES = $(shell $(PKGCONFIG) --variable=glib_compile_resources gio-2.0)
|
|
|
|
GLIB_COMPILE_SCHEMAS = $(shell $(PKGCONFIG) --variable=glib_compile_schemas gio-2.0)
|
2014-12-02 19:15:03 +00:00
|
|
|
|
2015-05-19 15:14:49 +00:00
|
|
|
SRC = exampleapp.c exampleappwin.c exampleappprefs.c main.c
|
|
|
|
BUILT_SRC = resources.c
|
2014-12-02 19:15:03 +00:00
|
|
|
|
2015-05-19 15:14:49 +00:00
|
|
|
OBJS = $(BUILT_SRC:.c=.o) $(SRC:.c=.o)
|
2014-12-02 19:15:03 +00:00
|
|
|
|
|
|
|
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
|
2016-07-03 17:54:11 +00:00
|
|
|
$(CC) -o $(@F) $(OBJS) $(LIBS)
|
2014-12-02 19:15:03 +00:00
|
|
|
|
|
|
|
clean:
|
2014-12-06 13:30:24 +00:00
|
|
|
rm -f org.gtk.exampleapp.gschema.valid
|
2014-12-02 19:15:03 +00:00
|
|
|
rm -f gschemas.compiled
|
2015-05-19 15:14:49 +00:00
|
|
|
rm -f $(BUILT_SRC)
|
2014-12-02 19:15:03 +00:00
|
|
|
rm -f $(OBJS)
|
2014-12-06 13:30:24 +00:00
|
|
|
rm -f exampleapp
|