mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-03-25 09:22:38 +08:00
37 lines
799 B
Plaintext
37 lines
799 B
Plaintext
|
|
|
|
# set your own targaet_os
|
|
TARGET_OS=freertos
|
|
|
|
##################################################
|
|
# set your compile tool #
|
|
CC=arm-linux-gnueabihf-gcc
|
|
CXX=arm-linux-gnueabihf-g++
|
|
CPP=arm-linux-gnueabihf-g++
|
|
AR=arm-linux-gnueabihf-ar
|
|
AS=arm-linux-gnueabihf-as
|
|
RANLIB=arm-linux-gnueabihf-ranlib
|
|
MAKE=/usr/bin/make
|
|
##################################################
|
|
|
|
ARFLAGS=-rc
|
|
COFLAG=-c
|
|
|
|
OBJ=o
|
|
LIBA=a
|
|
|
|
##################################################
|
|
# if you don't want to create dynamic, delete it #
|
|
LIBSO=so
|
|
SOFLAGS=-fPIC -shared -o
|
|
##################################################
|
|
|
|
|
|
##################################################
|
|
# set your compile flags and install prefix path #
|
|
PREFIX=/usr/local
|
|
CFLAGS+=-g -Wall -fPIC
|
|
LDFLAGS+=
|
|
##################################################
|
|
|