README 1.7 KB

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