[Cpri-develop] cpri/misc makefile.all,1.10,1.11
Brought to you by:
chrisan,
rasmusmyklebust
|
From: Rasmus M. <ras...@us...> - 2004-11-08 22:01:42
|
Update of /cvsroot/cpri/cpri/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11710 Modified Files: makefile.all Log Message: Fixed error when building examples with STATICLINK=1 Index: makefile.all =================================================================== RCS file: /cvsroot/cpri/cpri/misc/makefile.all,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** makefile.all 8 Nov 2004 21:26:38 -0000 1.10 --- makefile.all 8 Nov 2004 22:01:24 -0000 1.11 *************** *** 93,96 **** --- 93,108 ---- endif + # By default, Allegro is linked the same way as cgui, but this can be + # overridden. + # Note that it is not a good idea to do anything particular with the + # STATICLINK_ALLEGRO or NO_STATICLINK_ALLEGRO variables, since it would be + # bad to have two dlls around with the same name that link differently to + # Allegro. + ifdef STATICLINK + ifndef NO_STATICLINK_ALLEGRO + STATICLINK_ALLEGRO=1 + endif + endif + # -------- Include platform specific makefile. -------- |