Moved the examples folder to the trunk (as the examples should be related to the...
[maevies] / examples / Makefile
1 CC = g++
2
3 LIBS = `pkg-config rest --libs`
4
5 FLAGS = `pkg-config rest --cflags`
6
7 gtranslate: gtranslate.o
8         $(CC) -o gtranslate gtranslate.o $(LIBS)
9
10 gtranslate.o: gtranslate.cpp
11         $(CC) -c gtranslate.cpp $(FLAGS)
12
13 all: gtranslate
14
15 clean:
16         rm -rf gtranslate gtranslate.o *~