Quote:
Originally Posted by Alister
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
|