Development Environment of Legend of Tux: Difference between revisions

From LD Smith Games Workshop
Jump to navigation Jump to search
(Created page with 'Download cygwin: http://www.cygwin.com/ Run the "setup.exe" installer Be sure to select the following: *vi *gcc *make *g++ Download SDL: http://www.libsdl.org/download-1.2.p…')
 
No edit summary
Line 17: Line 17:
Start cygwin, and extract the file
Start cygwin, and extract the file


# gzip -d SDL-1.2.13.tar.gz
# gzip -d SDL-1.2.13.tar.gz


# tar xvf SDL-1.2.13.tar
# tar xvf SDL-1.2.13.tar


Build the SDL environment
Build the SDL environment


# cd SDL-1.2.13
# cd SDL-1.2.13


# ./configure
# ./configure


# make
# make


# make install
# make install

Revision as of 04:32, 8 October 2009

Download cygwin: http://www.cygwin.com/

Run the "setup.exe" installer

Be sure to select the following:

  • vi
  • gcc
  • make
  • g++

Download SDL: http://www.libsdl.org/download-1.2.php

Get the "SDL-1.2.13.tar.gz" file


Start cygwin, and extract the file

# gzip -d SDL-1.2.13.tar.gz
# tar xvf SDL-1.2.13.tar

Build the SDL environment

# cd SDL-1.2.13
# ./configure
# make
# make install