File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,18 @@ CROSS_PATH := /usr/local
55ARCHITECTURES := i686-w64-mingw32 x86_64-w64-mingw32
66
77all install :
8- @echo " Type \" make native\" to install 32-bit to /usr"
9- @echo " Type \" make cross\" to install 32-bit and 64-bit to $( CROSS_PATH) "
8+ @echo " Type \" $( MAKE ) native\" to install 32-bit to /usr"
9+ @echo " Type \" $( MAKE ) cross\" to install 32-bit and 64-bit to $( CROSS_PATH) "
1010
1111native :
12- make install-package arch=i686-w64-mingw32 prefix=/usr
12+ $( MAKE ) install-package arch=i686-w64-mingw32 prefix=/usr
1313
1414cross :
1515 mkdir -p $(CROSS_PATH ) /cmake
1616 cp -rv cmake/* $(CROSS_PATH ) /cmake
1717 for arch in $( ARCHITECTURES) ; do \
1818 mkdir -p $(CROSS_PATH ) /$$ arch; \
19- make install-package arch=$$ arch prefix=$(CROSS_PATH ) /$$ arch; \
19+ $( MAKE ) install-package arch=$$ arch prefix=$(CROSS_PATH ) /$$ arch; \
2020 done
2121
2222install-package :
You can’t perform that action at this time.
0 commit comments