summaryrefslogtreecommitdiffstats
path: root/hal/input_hal/Makefile
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2020-11-22 02:10:01 +0900
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2020-11-23 13:27:31 +0000
commit604011e21f44b51f3540711ffe53a16362796ae5 (patch)
treee15d5c5c7884a10721350cbe932257b00cdcb317 /hal/input_hal/Makefile
parent17cf21bcf8a2e29d2cbcf0a313474d2a4ee44f5d (diff)
Fix the path to the directory of the include files
Fix the path to the directory of the include files, '/usr/agl/include' to follow the standard, '/usr/include/' and add subsystem name 'basesystem' for agl-basesystem. Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> Change-Id: I170f23db7178b79bb1081fde9198cb244a51e64c
Diffstat (limited to 'hal/input_hal/Makefile')
-rwxr-xr-xhal/input_hal/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/hal/input_hal/Makefile b/hal/input_hal/Makefile
index 35dfefd..bfa5c2c 100755
--- a/hal/input_hal/Makefile
+++ b/hal/input_hal/Makefile
@@ -24,9 +24,9 @@ HEADER := ./hal_api/input_hal.h
######### include paths/files ###################
CXXFLAGS := -I./inc/
CXXFLAGS += -I./hal_api/
-CXXFLAGS += -I$(SDKTARGETSYSROOT)/usr/agl/include
+CXXFLAGS += -I$(SDKTARGETSYSROOT)/usr/include/basesystem
CXXFLAGS += -I$(SDKTARGETSYSROOT)/usr/include/libdrm
-CXXFLAGS += -include $(SDKTARGETSYSROOT)/usr/agl/include/agl_types_obsoluted.h
+CXXFLAGS += -include $(SDKTARGETSYSROOT)/usr/include/basesystem/agl_types_obsoluted.h
######### compile options #######################
CXXFLAGS += -Wall -fPIC
@@ -76,6 +76,6 @@ install:
@echo $@ done.
install-input:
- install -m 0755 -d $(DESTDIR)/usr/agl/include/$(COMPONENT_NAME)/
- install -m 0644 ./hal_api/$(COMPONENT_NAME)/aglinput.h $(DESTDIR)/usr/agl/include/$(COMPONENT_NAME)/
- install -m 0644 ./hal_api/$(COMPONENT_NAME)/extinput.h $(DESTDIR)/usr/agl/include/$(COMPONENT_NAME)/
+ install -m 0755 -d $(DESTDIR)/usr/include/basesystem/$(COMPONENT_NAME)/
+ install -m 0644 ./hal_api/$(COMPONENT_NAME)/aglinput.h $(DESTDIR)/usr/include/basesystem/$(COMPONENT_NAME)/
+ install -m 0644 ./hal_api/$(COMPONENT_NAME)/extinput.h $(DESTDIR)/usr/include/basesystem/$(COMPONENT_NAME)/