diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-02-16 11:13:11 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-02-16 11:13:11 -0500 |
commit | 89d95c86d8711a5f5cf38c1627b9254fa2512292 (patch) | |
tree | cf171149b1d3699ff49c84a80bb6993772f84909 | |
parent | 094e80ffaee16ae35e262d40284c0aab9efb980d (diff) | |
download | GradeBook-89d95c86d8711a5f5cf38c1627b9254fa2512292.tar.gz GradeBook-89d95c86d8711a5f5cf38c1627b9254fa2512292.zip |
added Makefile
Ignore-this: 836db942c13d4ffe29802ea3be90256b
darcs-hash:20110216161311-067c0-483250d687fc0dec8d262578f59eb8badd7d3bc9.gz
-rw-r--r-- | Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ab9de61 --- /dev/null +++ b/Makefile @@ -0,0 +1,25 @@ +# -*- make -*- +# FILE: "/home/evmik/src/my_src/GradeBook/Makefile" +# LAST MODIFICATION: "Wed, 16 Feb 2011 11:12:34 -0500 (evmik)" +# (C) 2011 by Eugeniy Mikhailov, <evgmik@gmail.com> +# $Id:$ +# + + +upscr = rsync -ave ssh +upload_location_code = physics.wm.edu:public_html/cgi-bin/ +upload_location_styles = physics.wm.edu:public_html/ + +files4upload_code = ./GradeBook.tcl ./GradeBook_lib.tcl +files4upload_styles = ./GradeBook.css + +default: + +upload_cgi: upload_code upload_styles + +upload_code: + $(upscr) $(files4upload_code) $(upload_location_code) + +upload_styles: + $(upscr) $(files4upload_styles) $(upload_location_styles) + |