aboutsummaryrefslogtreecommitdiff
path: root/examples/lm3s/Makefile.include
AgeCommit message (Collapse)Author
2012-10-16fix clean target for example makefiles if the compiler is not in PATHFelix Ruess
2012-08-14Use make wildcard command for source dir detect. Library path fix.Piotr Esden-Tempski
Thanks ni!
2012-08-13Examples detect if they are being built in src dir.Piotr Esden-Tempski
If an example is in the libopencm3 source directory it will use the locally built library instead of the system library. When you copy an example out of the libopencm3 tree it will automatically detect it and build using the system wide installation.
2012-08-13Changed local build target for library and linker files.Piotr Esden-Tempski
- The library files are now being built into the lib subdirectory of the source. - The linker files for each library are being copied into the lib source subdirectory. Motivation: The relative locations of files in the source directory after make are now the same as after make install now. This makes it easier to reuse examples with their makefiles outside of the libopencm3 sourcecode directory.
2012-03-02License change of the library to LGPL, version 3 or later.Piotr Esden-Tempski
Agreed to by all the significant contributors to the library.
2011-11-13examples: Remove duplicate example linker scripts.Uwe Hermann
Only add one linker script per eval board, and have the Makefiles use that. This avoids duplication, and various copy-paste errors and left-overs which we already have in the tree. Some of the linker scripts are not really correct, yet. Both, the comments which say which board, chip, and RAM/ROM sizes are used, as well as the actual RAM/ROM size definitions are sometimes copy-pasted from other boards and are thus incorrect. This needs to be fixed.
2011-10-12Update examples Makefiles to use the make shell function rather than ↵Fergus Noble
backticks for shell command expansion. Backticks are unreliable and don't work on all platforms.
2011-10-04Switched all makefiles to arm-none-eabi default.Piotr Esden-Tempski
2011-04-24Delete example dependencies on 'make clean'Gareth McMullin
2011-03-14Added dependency generation. Abort loops on error.Gareth McMullin
2011-02-04Added initial support for the LuminaryMicro LM3S family.Gareth McMullin