mirror of
https://github.com/ioacademy-jikim/multimedia
synced 2025-06-07 07:56:26 +00:00
15 lines
407 B
Makefile
15 lines
407 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES:= server.cpp
|
|
LOCAL_MODULE := my_server
|
|
LOCAL_SHARED_LIBRARIES:= libcutils libutils libbinder
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES:= client.cpp
|
|
LOCAL_MODULE := my_client
|
|
LOCAL_SHARED_LIBRARIES:= libcutils libutils libbinder
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_EXECUTABLE)
|