view src/hermes/common.inc @ 2151:1e0692271600

Fixed bug #436 The install-lib target should depend on the libraries that are built.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 05 Jul 2007 06:35:40 +0000
parents d76c3909b244
children
line wrap: on
line source

; Some common macros for hermes nasm code

%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro