adtools / os4sdl

Automatically exported from code.google.com/p/os4sdl
GNU Lesser General Public License v2.1
2 stars 2 forks source link

Create a dedicated and independent makefile #17

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The build system is based on configure and make, using libtool. There some 
weakness there:
- configure is used but to build libraries, the common use is to run "make" 
directly because configure generated filed are stored in the repository.
- libtool is not known to be robust and it hides many compilation aspects

Issue 1 reported an error (allocated section '.text' not in segment) and in 
this kind of example, it is hard to understand what is called and how.

The makefile will be able to:
- compile the static and the shared libraries
- compile and link tests with both libraries

It would be nice to launch the run of tests but these tests are not aimed to be 
run like that unfortunately.

Original issue reported on code.google.com by amiga...@gmail.com on 11 Jul 2013 at 2:03