Re: [AD] the "Allegro simple application makefile" |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
Let's see if I get this straight... are you trying to make a universal
makefile for everybody's
projects? I don't think it's a good idea, since many projects uses others
libs like libz or who
knows, other compilation optimizations... for your project, write your
makefile
and i dont see vrey difficult to write for example
gcc hello.c -lalleg :) (well, that for DJGPP)
My two cents...
> Hi guys!
> I've written a makefile that I think should go with the Allegro dist. It's
> meant
> to make compiling of users Allegro applications easier. There are several
> benefits of this:
>
> * We will see more games have makefiles as this will make everything a
> lot easier and less troublesome
>
> * Writing makefiles is very fast this way
>
> * Less portability issues later on when this file has been fixed a little.
> I'm not only thinking of the fact that linking Allegro is different on
> different
> platforms, I'm also thinking of the issues we've seen when different
> makefile parsers have been used. A well tested makefile will remove
> all the problems.
>
> * Targets that might be too troublesome to add becomes worth doing
> this way as the same makefile is used for all apps.
>
> The file and docs is included as a zip. If you decide to accept my little
> contribution, please do the CVS for me. I don't have enough experience
> to feel comfortable messing with the source online.