File: aidl-cpp.mk

package info (click to toggle)
android-platform-system-tools-aidl 1%3A10.0.0%2Br36-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,796 kB
  • sloc: cpp: 19,673; java: 972; yacc: 377; python: 160; lex: 115; xml: 19; makefile: 18; sh: 18
file content (9 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
NAME = aidl-cpp
SOURCES = main_cpp.cpp
CXXFLAGS += -std=c++17
LDFLAGS += -Wl,-rpath=/usr/lib/$(DEB_HOST_MULTIARCH)/android \
           -laidl-common \
           -L. -L/usr/lib/$(DEB_HOST_MULTIARCH)/android -lbase -latomic

$(NAME): $(SOURCES)
	$(CXX) $^ -o $(NAME) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)