Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/sound/hud/Makefile @ 3020

Last change on this file since 3020 was 3020, checked in by simon, 19 years ago

/branches/sound/sound, branches/sound/hud: Made a few changes like a version which no longer compiles… Ah life is so hard on me. If it would compile, you would need to make a folder Data in hud and add a tga file named Font.tga with the letters in it.

File size: 201 bytes
Line 
1CC = gcc -Wall -ansi
2SOURCE = hud.cc
3FLAGS = -lGL -lGLU `sdl-config --cflags --libs`
4BINARY = hud
5
6all:
7        $(CC) $(SOURCE) -o $(BINARY) $(FLAGS)
8
9clean:
10        @echo Cleaning up...
11        @rm $(BINARY)
12        @echo Done.
Note: See TracBrowser for help on using the repository browser.