projects
/
libgliar
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
merged lp:~hikiko/libgliar/libgliar.new-features to lp:libgliar
[libgliar]
/
tests
/
extbyindex
/
Makefile
1
obj = extbyindex.o
2
bin = extbyindex
3
4
CFLAGS = -pedantic -Wall -g
5
LDFLAGS = -lGL -lglut
6
7
$(bin): $(obj)
8
$(CC) -o $@ $(obj) $(LDFLAGS)
9
10
.PHONY: clean
11
clean:
12
rm -f $(obj) $(bin)