Shu-Wei Lee

@iecSgvSFSuyzObuZH3hNuQ

Joined on May 18, 2017

  • Installation $ curl https://rclone.org/install.sh | sudo bash Configuration $ rclone config 2020/07/23 01:44:17 NOTICE: Config file "/root/.config/rclone/rclone.conf" not found - using defaults No remotes found - make a new one n) New remote s) Set configuration password
     Like  Bookmark
  • --- title: 嘎挖寶寶粗去七頭, 20190911 tags: Templates, Talk description: View the slide with "Slide Mode". --- # 嘎挖寶寶粗去七頭, 20190911 --- ## 景點 ### 深坑 - 深坑老街 ### 平溪 - 平溪老街 - 十分老街 ### 瑞芳 - 九份金礦博物館 - 陰陽海 ### 基隆 - 和平島公園 - 望幽谷 - 外木山濱海風景區 - 基隆廟口夜市 ## 停靠站 1. [書緯家](https://goo.gl/maps/7ECiHMHwZ3PDcbV19) 2. [佳馨家](https://goo.gl/maps/za8xUE22fiFBsaa66) - https://goo.gl/maps/hrbPJtk25FxZUUXs6 - <iframe src="https://www.google.com/maps/embed?pb=!1m24!1m8!1m3!1d231422.5151548627!2d121.3734835!3d25.00
     Like  Bookmark
  • ###### tags: `note` `make` # GNU Make [GNU make manual](https://www.gnu.org/software/make/manual/make.html) ## 2. An Introduction to Makefiles ### 2.1 What a Rule Looks Like - 一個簡單的 makefile 包含的 rules 長得像這樣 : ``` make= target ... : prerequisites ... recipe ... ... ``` - target 通常是 program 產生的檔案的檔名,例如可執行黨的名稱或 object files 的名稱。 target 也可以是一個動作的名稱,例如 'clean' - prerequisite 是一個檔案,用來作為創造 target 的 input 。 target 通常會依賴多個檔案來產生。 - recipe 是 make 會執行的動作/指令。一個 recipe 可能會含有一個以上的指令
     Like  Bookmark