aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: 24b89b61a3e9574808c5a8f48e025989be3b951f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS=`pkg-config hildon-1 --cflags --libs`

all:
	$(CC) -Wall -Wextra -pedantic \
		collections.c \
		interface.c \
		c-main-window.c \
		c-new-item-dialog.c \
		$(CFLAGS) \
		-o collections

.PHONY: check-syntax
check-syntax:
	/scratchbox/login $(CC) -pedantic -Wall -Wextra -fsyntax-only \
		`readlink -f $(CHK_SOURCES)` \
		`/scratchbox/login pkg-config hildon-1 --cflags --libs`