From: <pa...@us...> - 2003-10-07 13:49:09
|
Update of /cvsroot/fuse-emulator/fuse/ui/xlib In directory sc8-pr-cvs1:/tmp/cvs-serv31876/ui/xlib Modified Files: Makefile.am Added Files: xjoystick.c Log Message: Real joystick support (Darren/Fred) --- NEW FILE: xjoystick.c --- /* fbjoystick.c: Joystick emulation Copyright (c) 2003 Darren Salt $Id: xjoystick.c,v 1.1 2003/10/07 13:49:01 pak21 Exp $ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Author contact information: E-mail: pak...@sr... Postal address: 15 Crescent Road, Wokingham, Berks, RG40 2DB, England Darren: li...@yo... */ #include <config.h> #ifdef UI_X #include "../uijoystick.c" #endif /* #ifdef UI_X */ Index: Makefile.am =================================================================== RCS file: /cvsroot/fuse-emulator/fuse/ui/xlib/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 4 Dec 2002 22:26:13 -0000 1.5 --- Makefile.am 7 Oct 2003 13:49:01 -0000 1.6 *************** *** 1,4 **** ## Process this file with automake to produce Makefile.in ! ## Copyright (c) 2001 Philip Kendall ## $Id$ --- 1,4 ---- ## Process this file with automake to produce Makefile.in ! ## Copyright (c) 2001-2003 Philip Kendall ## $Id$ *************** *** 27,31 **** noinst_LIBRARIES = libuixlib.a ! libuixlib_a_SOURCES = xdisplay.c xerror.c xkeyboard.c xui.c keysyms.c BUILT_SOURCES = keysyms.c --- 27,36 ---- noinst_LIBRARIES = libuixlib.a ! libuixlib_a_SOURCES = xdisplay.c \ ! xerror.c \ ! xjoystick.c \ ! xkeyboard.c \ ! xui.c \ ! keysyms.c BUILT_SOURCES = keysyms.c |