Mercurial > sdl-ios-xcode
view src/main/macos/Makefile.am @ 1265:670e74bf5cc8
Date: Mon, 22 Sep 2003 23:31:54 -0700 (PDT)
From: Rob Neff
Subject: [SDL] testgl.c minor bug fix for fullscreen mode
from:
if ( strcmp(argv[1], "-fullscreen") == 0 ) {
to:
if ( strcmp(argv[i], "-fullscreen") == 0 ) {
Minor bug, but might help someone else out who is trying to pass
the command-line params -logo -fullscreen like I was! :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 25 Jan 2006 07:04:02 +0000 |
parents | 55a86cfe6277 |
children |
line wrap: on
line source
# On OS X, install the SDL.rsrc. EXTRA_DIST = SDL_main.c SDL.rsrc rsrcdatadir = $(datadir)/sdl rsrcdata_DATA = \ SDL.rsrc SDL.rsrc: SDL.r /Developer/Tools/Rez -o $@ -useDF $< # The rsrc and export directory need to be copied into place # when building a distribution. dist-hook: cp -rp SDL.rsrc $(distdir) cp -rp exports $(distdir) (cd $(distdir)/exports && rm -rf `find . -name CVS`)