summaryrefslogtreecommitdiff
path: root/examples/application4/Makefile.example
blob: 3ce29b3f0524564ffe92119415c2ee8a0be60e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)