aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Mesa_6.4.2/progs/beos/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/extras/Mesa_6.4.2/progs/beos/Makefile')
-rw-r--r--nx-X11/extras/Mesa_6.4.2/progs/beos/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa_6.4.2/progs/beos/Makefile b/nx-X11/extras/Mesa_6.4.2/progs/beos/Makefile
new file mode 100644
index 000000000..45782fb3c
--- /dev/null
+++ b/nx-X11/extras/Mesa_6.4.2/progs/beos/Makefile
@@ -0,0 +1,33 @@
+# 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)
+
+INCLUDES = -I. -I- -I../../include
+
+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 $(INCLUDES) $(LDFLAGS) -o $@
+
+.cpp.o:
+ $(CC) -c $< $(INCLUDES) $(CFLAGS) -o $@