This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set MSYSTEM=MINGW32 | |
"%~dp0msys2.cmd" %* | |
set MSYSTEM= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: main.exe | |
foo.o: foo.c | |
gcc -c foo.c -o foo.o | |
libfoo.a: foo.o | |
ar sr libfoo.a foo.o | |
bar.o: bar.c | |
gcc -c bar.c -o bar.o | |
libbar.dll: bar.o libfoo.a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/system/bin/sh | |
# | |
# MORESPACE - init script to use an ext4-formatted sdcard for both app installations and user data | |
# Revision: 3 | |
# Author: github.com/elieux | |
# Device: Huawei Ascend G300 [U8815] with CM11 | |
# | |
# Warning: The script does not reformat your sdcard. That needs to be done manually before installing the script. | |
# Warning: The script is not designed for multiple-partition sdcards (sd-ext). | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# /etc/pacman.conf | |
# | |
# See the pacman.conf(5) manpage for option and repository directives | |
# | |
# GENERAL OPTIONS | |
# | |
[options] | |
# The following paths are commented out with their default values listed. |
NewerOlder