mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-02-06 02:01:50 +08:00
37 lines
757 B
Plaintext
37 lines
757 B
Plaintext
# rules for pc-linux
|
|
|
|
# set your own targaet_os
|
|
TARGET_OS=linux
|
|
|
|
##################################################
|
|
# set your compile tool #
|
|
CC=gcc
|
|
CXX=g++
|
|
CPP=g++
|
|
AR=ar
|
|
AS=as
|
|
RANLIB=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 `pkg-config --cflags freetype2` -I/usr/local/include/harfbuzz
|
|
LDFLAGS+=
|
|
##################################################
|
|
|