Thread: OpenJazz
View Single Post
Erik Erik's Avatar

JCF Member

Joined: Mar 2005

Posts: 1,304

Erik is doing well so far

Feb 23, 2007, 11:23 AM
Erik is offline
Reply With Quote
Quote:
Originally Posted by Alister View Post
I've uploaded the most recent version to the website. Not much has changed, but at least people can stop pestering me about the bridges

Neurotic: The most basic way would be to run the following commands.
gcc -c bonus.c -o bonus.o
gcc -c font.c -o font.o
gcc -c level.c -o level.o
gcc -c main.c -o main.o
gcc -c menu.c -o menu.o
gcc -c planet.c -o planet.o
gcc -c scene.c -o scene.o
gcc -c sound.c -o sound.o
gcc -o OpenJazz -lSDL bonus.o font.o level.o main.o menu.o planet.o scene.o sound.o

Of course, there are better ways of doing this (e.g. makefiles).

BN:
don't you have a makefile