added Makefile

This commit is contained in:
cozman 2005-07-18 22:28:27 +00:00
parent 9bb913a9b1
commit 2cd172d158
2 changed files with 4 additions and 2 deletions

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
test: test.cpp GLFT_Font.cpp
g++ GLFT_Font.cpp test.cpp -o test -Wall -pedantic -lglfw -lGL -lfreetype `freetype-config --cflags`

View File

@ -1,8 +1,8 @@
// This file is distributed along with GLFT_Font and is in the public domain.
// Compiled with g++ GLFT_Font.cpp test.cpp -o test -Wall -pedantic
// -lglfw -lGL -lfreetype
// -lglfw -lGL -lfreetype `freetype-config --cflags`
//
// $Id: test.cpp,v 1.1 2005/07/18 22:19:16 cozman Exp $
// $Id: test.cpp,v 1.2 2005/07/18 22:28:27 cozman Exp $
#include <GL/glfw.h>
#include "GLFT_Font.hpp"