2015-05-19 15:14:49 +00:00
|
|
|
CC ?= gcc
|
2014-12-02 19:15:03 +00:00
|
|
|
PKGCONFIG = $(shell which pkg-config)
|
2015-05-19 15:14:49 +00:00
|
|
|
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)
|
2014-12-02 19:15:03 +00:00
|
|
|
|
2015-05-19 15:14:49 +00:00
|
|
|
SRC = exampleapp.c exampleappwin.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
|
|
|
|
|
|
|
|
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:
|
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
|