summaryrefslogtreecommitdiff
path: root/sync-basic/Makefile
blob: 4b8817a3f28a280c5d7af0456ca2c6c2eb662cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#############################################################################
# Copyright (c) 2013 Linaro
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     Linaro <linaro-dev@lists.linaro.org>
#############################################################################

CROSS_COMPILE 	=
KDIR		= /home/dima/work/linaro/linux.git
CC		= $(CROSS_COMPILE)gcc
CFLAGS		= -O2 -g

sync-basic: sync-basic.c
	$(CC) $(CFLAGS) -I$(KDIR)/drivers/staging/android -o $@ $<

clean:
	$(RM) sync-basic