forked from isis-project/BrowserAdapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
30 lines (24 loc) · 834 Bytes
/
Makefile
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
BUILD_TYPE := release
PLATFORM := $(TARGET_ARCH)
INCLUDES := -I$(STAGING_INC_DIR) -I$(STAGING_INC_DIR)/Yap -I$(STAGING_INC_DIR)/BrowserServer
LIBS := -L$(STAGING_LIB_DIR) -lYap $(STAGING_LIB_DIR)/AdapterBase.a
INCLUDES += \
-I$(STAGING_INC_DIR)/webkit/npapi \
-I$(QT_INSTALL_PREFIX)/include/ \
-I$(QT_INSTALL_PREFIX)/include/Qt \
-I$(QT_INSTALL_PREFIX)/include/QtCore \
-I$(QT_INSTALL_PREFIX)/include/QtGui \
-I$(QT_INSTALL_PREFIX)/include/QtNetwork
LIBS += \
-Wl,-rpath $(STAGING_LIB_DIR) \
-L$(QT_INSTALL_PREFIX)/lib \
-L$(STAGING_LIB_DIR) \
-lQtGui \
-lQtNetwork \
-lQtCore
include Makefile.inc
install: all
@mkdir -p $(INSTALL_DIR)/lib/BrowserPlugins
install -m 0755 $(BUILD_TYPE)-$(PLATFORM)/BrowserAdapter.so $(INSTALL_DIR)/lib/BrowserPlugins
stage:
@echo "nothing to do"