Mercurial > sdl-ios-xcode
view src/hermes/Makefile.am @ 379:11c8a7684f74
Date: Fri, 24 May 2002 10:32:00 -0700
From: David Hedbor <david@hedbor.org>
Subject: more patches
Ok, another thing I discovered when porting prboom to the Zaurus -
mouse events weren't rotated when the screen was (i.e you got
incorrect events there).
This is now fixed. Also noticed that SDL_WarpMouse isn't handled
correctly, but I haven't looked at fixing that yes.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 28 May 2002 19:24:11 +0000 |
parents | 2d1753bc178a |
children | b98f732b4322 |
line wrap: on
line source
########################################################################### # # Some consistent rules for building asm files: STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh SUFFIXES = .asm .asm.lo: $(LIBTOOL) --mode=compile $(STRIP_FPIC) $(NASM) @NASMFLAGS@ $< ########################################################################### # The hermes library target noinst_LTLIBRARIES = libhermes.la libhermes_la_SOURCES = $(PORTABLE_SRCS) am_libhermes_la_OBJECTS = \ mmx_main.lo \ mmxp2_32.lo \ x86_main.lo \ x86p_16.lo \ x86p_32.lo # The hermes library sources PORTABLE_SRCS = \ mmx_main.asm \ mmxp2_32.asm \ x86_main.asm \ x86p_16.asm \ x86p_32.asm \ \ HeadMMX.h \ HeadX86.h EXTRA_DIST = \ COPYING.LIB \ README