mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 20:34:30 +00:00
13 lines
176 B
Makefile
13 lines
176 B
Makefile
# CROSS_COMPILE=aarch64-linux-gnu- make
|
|
#
|
|
CC=gcc
|
|
CFLAGS=-static -lc
|
|
|
|
revent: revent.c
|
|
$(CROSS_COMPILE)$(CC) $(CFLAGS) revent.c -o revent
|
|
|
|
clean:
|
|
rm -rf revent
|
|
|
|
.PHONY: clean
|