forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile-libcefpythonapp
More file actions
32 lines (26 loc) · 1.12 KB
/
Makefile-libcefpythonapp
File metadata and controls
32 lines (26 loc) · 1.12 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
# -g - extra debug information
# -O1 - more precise backtraces
# -fPIC - required when using -shared option, required for use with Cython
# -Wall - show important warnings
# -Werror - treat warnings as errors
# Cython compiler options:
# -fPIC -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions \
# -Wl,-z,relro
CC = g++
CCFLAGS = -g -fPIC -Wall -Werror -DBROWSER_PROCESS $(CEF_CCFLAGS)
SRC = cefpython_app.cpp v8function_handler.cpp v8utils.cpp \
javascript_callback.cpp
OBJ = $(SRC:.cpp=.o)
OUT = libcefpythonapp.a
INC = -I./../ -I/usr/include/python2.7 -I/usr/include/gtk-2.0 \
-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/gtk-2.0/include \
-I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/cairo \
-I/usr/include/pango-1.0 -I/usr/include/gdk-pixbuf-2.0 \
-I/usr/include/atk-1.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include \
-I/usr/lib/x86_64-linux-gnu/gtk-2.0/include \
-I/usr/lib64/glib-2.0/include -I/usr/lib64/gtk-2.0/include \
-I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include
.cpp.o:
$(CC) $(CCFLAGS) $(INC) -c $< -o $@
$(OUT): $(OBJ)
ar rcs $(OUT) $(OBJ)