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

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

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

ashmemtest-expanded.c: ashmemtest-expanded.l
	$(FLEX) -o $@ $<

clean:
	$(RM) ashmemtest-expanded ashmemtest-expanded.c