mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-25 12:42:02 +03:00
[ install ] Install non-executable files with the executable flag off
This commit is contained in:
parent
79177a70ea
commit
08d9e7d82c
8
Makefile
8
Makefile
@ -186,10 +186,10 @@ install-support:
|
|||||||
mkdir -p ${PREFIX}/${NAME_VERSION}/support/racket
|
mkdir -p ${PREFIX}/${NAME_VERSION}/support/racket
|
||||||
mkdir -p ${PREFIX}/${NAME_VERSION}/support/gambit
|
mkdir -p ${PREFIX}/${NAME_VERSION}/support/gambit
|
||||||
mkdir -p ${PREFIX}/${NAME_VERSION}/support/js
|
mkdir -p ${PREFIX}/${NAME_VERSION}/support/js
|
||||||
install support/docs/* ${PREFIX}/${NAME_VERSION}/support/docs
|
install -m 644 support/docs/* ${PREFIX}/${NAME_VERSION}/support/docs
|
||||||
install support/racket/* ${PREFIX}/${NAME_VERSION}/support/racket
|
install -m 644 support/racket/* ${PREFIX}/${NAME_VERSION}/support/racket
|
||||||
install support/gambit/* ${PREFIX}/${NAME_VERSION}/support/gambit
|
install -m 644 support/gambit/* ${PREFIX}/${NAME_VERSION}/support/gambit
|
||||||
install support/js/* ${PREFIX}/${NAME_VERSION}/support/js
|
install -m 644 support/js/* ${PREFIX}/${NAME_VERSION}/support/js
|
||||||
@${MAKE} -C support/c install
|
@${MAKE} -C support/c install
|
||||||
@${MAKE} -C support/refc install
|
@${MAKE} -C support/refc install
|
||||||
@${MAKE} -C support/chez install
|
@${MAKE} -C support/chez install
|
||||||
|
@ -11,7 +11,7 @@ build: support-sep.ss
|
|||||||
|
|
||||||
install: build
|
install: build
|
||||||
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/support/chez
|
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/support/chez
|
||||||
install *.ss ${PREFIX}/idris2-${IDRIS2_VERSION}/support/chez
|
install -m 644 *.ss ${PREFIX}/idris2-${IDRIS2_VERSION}/support/chez
|
||||||
|
|
||||||
support-sep.ss: support.ss
|
support-sep.ss: support.ss
|
||||||
# start library header
|
# start library header
|
||||||
|
@ -44,4 +44,4 @@ cleandep: clean
|
|||||||
|
|
||||||
install: build
|
install: build
|
||||||
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/refc
|
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/refc
|
||||||
install $(LIBTARGET) *.h ${PREFIX}/idris2-${IDRIS2_VERSION}/refc
|
install -m 644 $(LIBTARGET) *.h ${PREFIX}/idris2-${IDRIS2_VERSION}/refc
|
||||||
|
Loading…
Reference in New Issue
Block a user