progs: Make fp-tri use glew and add scons target
diff --git a/progs/fp/SConscript b/progs/fp/SConscript
new file mode 100644
index 0000000..e31fa32
--- /dev/null
+++ b/progs/fp/SConscript
@@ -0,0 +1,13 @@
+Import('env')
+
+if not env['GLUT']:
+    Return()
+
+env = env.Clone()
+
+env.Prepend(LIBS = ['$GLUT_LIB'])
+
+env.Program(
+        target = 'fp-tri',
+        source = ['fp-tri.c'],
+    )