public
Description: Automatic approximation of typical Photoshop actions
Homepage: http://rcrowley.org/2007/11/08/introducing-curvr/
Clone URL: git://github.com/rcrowley/curvr.git
curvr / Makefile
100644 33 lines (25 sloc) 0.543 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# curvr
# Richard Crowley <r@rcrowley.org>
#
 
INCLUDE := -I/usr/local/include/GraphicsMagick -I/usr/local/include/exiv2
LIB := -L/usr/local/lib \
-lGraphicsMagick++ -lGraphicsMagick \
-lexiv2 \
-lz -lbz2 \
-lxml2 -lexpat \
-ljpeg -ltiff
 
FLAGS := -O2 -Wall
 
all: depth curvr
 
curvr:
g++ $(FLAGS) -DQUANTUM_DEPTH_`./depth` -o curvr curvr.cc \
$(INCLUDE) $(LIB)
 
depth:
g++ $(FLAGS) -o depth depth.cc $(INCLUDE) $(LIB)
 
install:
cp curvr ~/bin/
cp curvall ~/bin/
cp curvrmail ~/bin/
cp curvrconf ~/bin/
 
clean:
rm -f curvr depth