Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

/branches/sound: HUD reconfigured. Didn't commit earlier because something is amiss and it doesn't compile. Will make the thing materials functions to make bmp and tga.

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