added tests for the new features
[libgliar] / tests / glinfo / Makefile
diff --git a/tests/glinfo/Makefile b/tests/glinfo/Makefile
new file mode 100644 (file)
index 0000000..9b96a9a
--- /dev/null
@@ -0,0 +1,12 @@
+obj = glinfo.o
+bin = glinfo
+
+CFLAGS = -pedantic -Wall -g
+LDFLAGS = -lGL -lglut
+
+$(bin): $(obj)
+       $(CC) -o $@ $(obj) $(LDFLAGS)
+
+.PHONY: clean
+clean:
+       rm -f $(obj) $(bin)