Last change
on this file since 3214 was
3114,
checked in by simon, 20 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
|
Rev | Line | |
---|
[3020] | 1 | CC = gcc -Wall -ansi |
---|
[3114] | 2 | SOURCE = hud_tga.cc |
---|
| 3 | FLAGS = -lGL -lGLU |
---|
| 4 | SDL = `sdl-config --cflags --libs` |
---|
| 5 | INCLUDES = -I/usr/include/SDL -L/usr/lib |
---|
| 6 | BINARY = hud_tga |
---|
[3020] | 7 | |
---|
| 8 | all: |
---|
[3114] | 9 | $(CC) $(SOURCE) -o $(BINARY) $(FLAGS) $(SDL) $(INCLUDES) |
---|
[3020] | 10 | |
---|
| 11 | clean: |
---|
| 12 | @echo Cleaning up... |
---|
| 13 | @rm $(BINARY) |
---|
| 14 | @echo Done. |
---|
Note: See
TracBrowser
for help on using the repository browser.