projects
/
movit
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Move the Effect class out into its own file.
[movit]
/
Makefile
1
CC=gcc
2
CXX=g++
3
CXXFLAGS=-Wall
4
LDFLAGS=-lSDL -lSDL_image -lGL
5
OBJS=main.o util.o widgets.o effect.o
6
7
test: $(OBJS)
8
$(CXX) -o test $(OBJS) $(LDFLAGS)
9
10
.o: .cpp
11
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
12
13
clean:
14
$(RM) test $(OBJS)
15
16
.PHONY: clean