make script (??)
make prepare (??)
make -C /usr/src/linux SUBDIRS=$PWD modules
※粗體字部份改成 kernel source 的位置即可。
make script (??)
make prepare (??)
make -C /usr/src/linux SUBDIRS=$PWD modules
*.mfg - menu configuration files
*.pfg - popup menu configuration files
*.tfg - toolbar configuration files
Uedit32.* - currently used configuration files
ini - your current settings
kbd - your current key mappings (< v12.20 of UE)
uek - your current key mappings (>= v12.20 of UE)
mnu - your current menu
pmu - your current popup menu
tbr - your current toolbars
Wordfile.txt - syntax highlighting definition file
Htmltidy.cfg - HTMLTidy configuration file, if you have created it manually
Uetmplte.dat - UltraEdit templates (see template list)
taglist.txt - UltraEdit tags (see tag list)
*.mac - your macro files*.in1 - environment settings (part of the INI)
*.mb1 - menu configuration files
*.pb1 - popup menu configuration files
*.tb1 - toolbar configuration files (also *.tb0)
*.te1 - environment template files
Uedit32.* - currently used configuration files
ini - your current settings
uek - your current key mappingsPatch Single file:
make a patch:
cd program_folder # go into the target folder
diff -Nu old_file new_file > patch_file
# the patch_file is the patch, it can use to patch file for another user
patch a file:
cd program_folder # go into the target folder
patch -p 1 < patch_file
# if you want to UnPatch the file
patch -R -p 1 < patch_file
Patch a Directory:
make a patch:
diff -rNu old_folder new_folder > patch_file
# no need to exec the command inside the program folder
patch the folder:
patch -p 0 < patch_file
# if you want to UnPatch, also use -R
patch -R -p 0 <>