1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-01 08:18:37 +00:00

19 lines
254 B
Makefile
Raw Normal View History

# 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