projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Wrap INSERTs in a transaction.
[ccbs]
/
Makefile
1
CC=gcc
2
CXX=g++
3
LIBS=-lGL -lX11 -lXext -lXxf86vm
4
CCBS_BIGSCREEN_OBJS=ccbs_bigscreen.o glwindow.o
5
6
all: ccbs-bigscreen
7
8
ccbs-bigscreen: $(CCBS_BIGSCREEN_OBJS)
9
$(CXX) -o ccbs-bigscreen $(CCBS_BIGSCREEN_OBJS) $(LDFLAGS) $(LIBS)
10
11
clean:
12
$(RM) $(CCBS_BIGSCREEN_OBJS) ccbs-bigscreen
13
14
.PHONY: clean