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
63 lines (55 loc) · 1.91 KB
/
Makefile-libcefpythonapp
File metadata and controls
63 lines (55 loc) · 1.91 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -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
UNAME_S = $(shell uname -s)
CC = g++
CCFLAGS = -fPIC -std=gnu++11 -Wall -Werror -DBROWSER_PROCESS \
$(CEF_CCFLAGS)
ifeq ($(UNAME_S), Linux)
CPP_FILES = print_handler_gtk.cpp \
main_message_loop/main_message_loop_external_pump_linux.cpp
else ifeq ($(UNAME_S), Darwin)
CPP_FILES = \
main_message_loop/main_message_loop_external_pump_mac.mm
else
CPP_FILES =
endif
SRC = cefpython_app.cpp v8function_handler.cpp v8utils.cpp \
javascript_callback.cpp \
main_message_loop/main_message_loop.cpp \
main_message_loop/main_message_loop_std.cpp \
main_message_loop/main_message_loop_external_pump.cpp \
$(CPP_FILES)
OBJ = $(SRC:.cpp=.o)
OUT = libcefpythonapp.a
INC = -I./../ -I./../common/ -I/usr/include/python2.7 \
-I/usr/include/gtk-2.0 \
-I/usr/include/gtk-unix-print-2.0 \
-I/usr/include/glib-2.0 \
-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/gtk-2.0/include \
-I/usr/lib/x86_64-linux-gnu/gtk-unix-print-2.0 \
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include \
-I/usr/lib/i386-linux-gnu/gtk-2.0/include \
-I/usr/lib/i386-linux-gnu/gtk-unix-print-2.0 \
-I/usr/lib/i386-linux-gnu/glib-2.0/include \
-I/usr/lib64/gtk-2.0/include \
-I/usr/lib64/gtk-unix-print-2.0 \
-I/usr/lib64/glib-2.0/include \
-I/usr/lib/gtk-2.0/include \
-I/usr/lib/gtk-2.0/gtk-unix-print-2.0 \
-I/usr/lib/glib-2.0/include
.cpp.o:
@echo [CEFPYTHONAPP] Building $@ from $<...
$(CC) $(CCFLAGS) $(INC) -c $< -o $@
$(OUT): $(OBJ)
@echo [CEFPYTHONAPP] Creating library $(OUT) from $(OBJ)...
ar rcs $(OUT) $(OBJ)