blob: efd1fa0021829be161e019dacaed29e634088152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Makefile for ARM Streamline - Gator Daemon
# make -f Makefile_aarch64
#
# Uncomment and define CROSS_COMPILE if it is not already defined
# CROSS_COMPILE=/path/to/cross-compiler/aarch64-linux-gnu-
CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)g++
include common.mk
|