From b5ce7aead1062b6a75c2cfbc6db09983bccfaf52 Mon Sep 17 00:00:00 2001 From: Filip Stromback Date: Sun, 21 Jul 2013 21:23:16 +0200 Subject: [PATCH] Removed old document --- install.txt | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 install.txt diff --git a/install.txt b/install.txt deleted file mode 100644 index d48d521..0000000 --- a/install.txt +++ /dev/null @@ -1,42 +0,0 @@ -How to install mymake: - --Build the executable using make. - -cd into the cloned directory and run "make". This will produce the executable -mymake. - - --Add an alias. - -Adding an alias makes it possible to use mymake as if mymake was in the PATH, -even when it is not. - -Open the .rc file for your shell and add an alias. - -~/.cshrc.private: -alias mm "~/path/to/mymake" - -~/.bashrc -alias mm="~/path/to/mymake" - - --Setup the default .mymake. - -mymake will check for settings in three places when it is run. First it will -parse ~/.mymake (if it exists). Then the .mymake in the current directory -will be parsed (if it exists), and last any command line parameters will -be parsed. Settings overwrites each other, so the settings found in ~/.mymake -have the lowest priority and the settings on the command-line have the highest -priority. -To make it easy to change global settings with mymake, it is recommended -to create a .mymake file in ~. This is done by executing "mymake -config". -The generated file will also contain comments to further document the settings. - -It is recommended to change the compilation command to include more flags -of your choice. - - --Use mymake. - -See help.txt for further instructions on usage. -