/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Development/libraries/opengl/example/makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2009-04-09 03:21:08 UTC
  • Revision ID: csa@dside.dyndns.org-20090409032108-w4edamdh4adrgdu3
import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
HEADERS = functions.h xfunctions.h objects.h config.h
 
2
LIBS = -lGL -lGLU -lftgl -lfontconfig
 
3
INCLUDES = -I/usr/include/FTGL -I/usr/include/freetype2 -I/usr/include/fontconfig
 
4
 
 
5
.PHONY: all
 
6
 
 
7
all: gl bz nurb
 
8
 
 
9
gl: gl.c $(HEADERS)
 
10
        gcc  $(INCLUDES) -o gl $(LIBS) gl.c
 
11
 
 
12
bz: bz.c $(HEADERS)
 
13
        gcc  -o bz $(LIBS) bz.c
 
14
 
 
15
nurb: nurb.c $(HEADERS)
 
16
        gcc  -o nurb $(LIBS) nurb.c
 
17
 
 
18
clean:
 
19
        rm -f gl nurb bz
 
20
 
 
21
 
 
22
#-lglut
 
 
b'\\ No newline at end of file'