mesa/progs/beos/Makefile
Philippe Houdoin f17ddd4884 Fix demo.cpp, which wasn't working as expected.
Add a GLInfo app, a graphical tool displaying GL Info as a treeview.
Usefull to see which OpenGL renderer you use and which extension(s) is supported.
Convert the Makefile to be $(TOP)/configs/default-based.
2004-08-14 09:59:16 +00:00

31 lines
490 B
Makefile

# progs/beos/Makefile
TOP = ../..
include $(TOP)/configs/current
# Makefile for BeOS demos
# Written by Brian Paul
# This file is in the public domain.
#
# Modified by Philippe Houdoin
LDFLAGS += -soname=_APP_ $(APP_LIB_DEPS)
default: demo sample GLInfo
clean:
rm -f demo sample GLInfo
rm -f *.o
demo: demo.o
$(LD) demo.o $(LDFLAGS) -o $@
sample: sample.o
$(LD) sample.o $(LDFLAGS) -o $@
GTLInfo: GLInfo.o
$(LD) GLInfo.o $(LDFLAGS) -o $@
.cpp.o:
$(CC) -c $< $(CFLAGS) -o $@