1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-01 00:08:39 +00:00
Marc Bonnici a81fe5555a Revent: Added support for Vsync timings.
Updated revent to use timing information provided from VSync service
running on android to try and improve timing accuracy.
Revent now takes `-V` parameter for both the record and replay command to indicate that the VSync service should be used.
2017-01-31 17:46:31 +00:00

19 lines
254 B
Makefile

# CROSS_COMPILE=aarch64-linux-gnu- make
#
CC=gcc
LIBFLAGS= -lm
ifdef DEBUG
CFLAGS=-static -lc -g
else
CFLAGS=-static -lc -O2
endif
revent: revent.c
$(CROSS_COMPILE)$(CC) $(CFLAGS) revent.c -o revent $(LIBFLAGS)
clean:
rm -rf revent
.PHONY: clean