109 lines
2.8 KiB
Makefile
109 lines
2.8 KiB
Makefile
#
|
|
# Sample makefile for bash loadable builtin development
|
|
#
|
|
# Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
PACKAGE = bash
|
|
VERSION = 5.0-release
|
|
|
|
PACKAGE_NAME = bash
|
|
PACKAGE_VERSION = 5.0-release
|
|
|
|
# Include some boilerplate Gnu makefile definitions.
|
|
prefix = /home/poshiunchen/GIT/t-head/cv_0917/buildroot/thead_9xx_compat_5.10_glibc_br_defconfig/build/bash-5.0/xxxx
|
|
|
|
exec_prefix = ${prefix}
|
|
bindir = ${exec_prefix}/bin
|
|
libdir = ${exec_prefix}/lib
|
|
infodir = ${datarootdir}/info
|
|
includedir = ${prefix}/include
|
|
|
|
datarootdir = ${prefix}/share
|
|
|
|
loadablesdir = ${libdir}/bash
|
|
headersdir = $(includedir)/$(PACKAGE_NAME)
|
|
|
|
topdir = ../..
|
|
BUILD_DIR = /home/poshiunchen/GIT/t-head/cv_0917/buildroot/thead_9xx_compat_5.10_glibc_br_defconfig/build/bash-5.0
|
|
srcdir = .
|
|
|
|
|
|
# Support an alternate destination root directory for package building
|
|
DESTDIR =
|
|
|
|
INSTALL = /usr/bin/install -c
|
|
INSTALL_PROGRAM = ${INSTALL}
|
|
INSTALL_SCRIPT = ${INSTALL}
|
|
INSTALL_DATA = ${INSTALL} -m 644
|
|
INSTALLMODE= -m 0755
|
|
|
|
|
|
CC = riscv64-unknown-linux-gnu-gcc
|
|
RM = rm -f
|
|
|
|
SHELL = /bin/sh
|
|
|
|
host_os = linux-gnu
|
|
host_cpu = riscv64
|
|
host_vendor = unknown
|
|
|
|
CFLAGS = -g -O2 -Wno-parentheses -Wno-format-security
|
|
LOCAL_CFLAGS =
|
|
DEFS = -DHAVE_CONFIG_H
|
|
LOCAL_DEFS = -DSHELL
|
|
|
|
CPPFLAGS =
|
|
|
|
BASHINCDIR = ${topdir}/include
|
|
|
|
SUPPORT_SRC = $(topdir)/support/
|
|
|
|
LIBBUILD = ${BUILD_DIR}/lib
|
|
|
|
INTL_LIBSRC = ${topdir}/lib/intl
|
|
INTL_BUILDDIR = ${LIBBUILD}/intl
|
|
INTL_INC =
|
|
LIBINTL_H =
|
|
|
|
CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) $(CFLAGS)
|
|
|
|
#
|
|
# These values are generated for configure by ${topdir}/support/shobj-conf.
|
|
# If your system is not supported by that script, but includes facilities for
|
|
# dynamic loading of shared objects, please update the script and send the
|
|
# changes to bash-maintainers@gnu.org.
|
|
#
|
|
SHOBJ_CC = riscv64-unknown-linux-gnu-gcc
|
|
SHOBJ_CFLAGS = -fPIC
|
|
SHOBJ_LD = ${CC}
|
|
SHOBJ_LDFLAGS = -shared -Wl,-soname,$@ -L./lib/termcap
|
|
SHOBJ_XLDFLAGS =
|
|
SHOBJ_LIBS =
|
|
SHOBJ_STATUS = supported
|
|
|
|
INC = -I$(headersdir) -I$(headersdir)/include -I$(headersdir)/builtins
|
|
|
|
.c.o:
|
|
$(SHOBJ_CC) $(SHOBJ_CFLAGS) $(CCFLAGS) $(INC) -c -o $@ $<
|
|
|
|
all: example
|
|
|
|
example: example.o
|
|
$(SHOBJ_LD) $(SHOBJ_LDFLAGS) $(SHOBJ_XLDFLAGS) -o $@ example.o $(SHOBJ_LIBS)
|
|
|
|
example.o: example.c
|