| 1 | /****************************************************************************** |
|---|
| 2 | |
|---|
| 3 | Project: Portable command line ISP for Philips LPC2000 family |
|---|
| 4 | and Analog Devices ADUC70xx |
|---|
| 5 | |
|---|
| 6 | Filename: README |
|---|
| 7 | |
|---|
| 8 | Compiler: Microsoft VC 6/7, GCC Cygwin, GCC Linux, GCC ARM ELF |
|---|
| 9 | |
|---|
| 10 | Author: Martin Maurer (Martin.Maurer@clibb.de) |
|---|
| 11 | |
|---|
| 12 | Copyright: (c) Martin Maurer 2003-2008, All rights reserved |
|---|
| 13 | Portions Copyright (c) by Aeolus Development 2004 http://www.aeolusdevelopment.com |
|---|
| 14 | |
|---|
| 15 | This file is part of lpc21isp. |
|---|
| 16 | |
|---|
| 17 | lpc21isp is free software: you can redistribute it and/or modify |
|---|
| 18 | it under the terms of the GNU Lesser General Public License as published by |
|---|
| 19 | the Free Software Foundation, either version 3 of the License, or |
|---|
| 20 | any later version. |
|---|
| 21 | |
|---|
| 22 | lpc21isp is distributed in the hope that it will be useful, |
|---|
| 23 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 24 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 25 | GNU Lesser General Public License for more details. |
|---|
| 26 | |
|---|
| 27 | You should have received a copy of the GNU Lesser General Public License |
|---|
| 28 | and GNU General Public License along with lpc21isp. |
|---|
| 29 | If not, see <http://www.gnu.org/licenses/>. |
|---|
| 30 | */ |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | To compile with microsoft visual studio: |
|---|
| 34 | - Open console. Execute bat file from your installation, e.g. |
|---|
| 35 | "c:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" |
|---|
| 36 | - Go to directory where you unpacked the source. |
|---|
| 37 | - Run |
|---|
| 38 | nmake /f Makefile.vc clean all |
|---|
| 39 | |
|---|
| 40 | To compile with gcc (linux, cygwin, ...) |
|---|
| 41 | - Open shell / terminal windows |
|---|
| 42 | - Run (if you want to use make and gcc) |
|---|
| 43 | make -f Makefile.gnu clean all |
|---|
| 44 | - Run (if you want to use gmake and gcc) |
|---|
| 45 | gmake -f Makefile.gnu clean all |
|---|