summaryrefslogtreecommitdiff
path: root/ashmemtest-basic/Makefile
blob: 7ebe6f2e936def0b70ccccd2df0dc3496d906774 (plain)
1
2
3
4
5
6
7
8
9
10
11
# This file is here just to allow compiling the test without full Android setup.

CROSS_COMPILE 	= 
CC		= $(CROSS_COMPILE)gcc
CFLAGS		= -O2 -g

ashmemtest: ashmemtest.c
	$(CC) $(CFLAGS) -I. -o $@ $<

clean:
	$(RM) ashmemtest