From: <pa...@us...> - 2003-10-07 13:49:10
|
Update of /cvsroot/fuse-emulator/fuse/ui/fb In directory sc8-pr-cvs1:/tmp/cvs-serv31876/ui/fb Modified Files: Makefile.am Added Files: fbjoystick.c Log Message: Real joystick support (Darren/Fred) --- NEW FILE: fbjoystick.c --- /* fbjoystick.c: Joystick emulation Copyright (c) 2003 Darren Salt $Id: fbjoystick.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_FB #include "../uijoystick.c" #endif /* #ifdef UI_FB */ Index: Makefile.am =================================================================== RCS file: /cvsroot/fuse-emulator/fuse/ui/fb/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile.am 13 Apr 2003 09:48:32 -0000 1.6 --- Makefile.am 7 Oct 2003 13:49:01 -0000 1.7 *************** *** 29,33 **** INCLUDES = @GLIB_CFLAGS@ @LIBSPEC_CFLAGS@ ! libuifb_a_SOURCES = fbdisplay.c fbkeyboard.c fbui.c error.c keysyms.c BUILT_SOURCES = keysyms.c --- 29,38 ---- INCLUDES = @GLIB_CFLAGS@ @LIBSPEC_CFLAGS@ ! libuifb_a_SOURCES = fbdisplay.c \ ! fbjoystick.c \ ! fbkeyboard.c \ ! fbui.c \ ! error.c \ ! keysyms.c BUILT_SOURCES = keysyms.c |