52 lines
1,017 B
Makefile
52 lines
1,017 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
sgdisk_src_files := \
|
|
sgdisk.cc \
|
|
gptcl.cc \
|
|
crc32.cc \
|
|
support.cc \
|
|
guid.cc \
|
|
gptpart.cc \
|
|
mbrpart.cc \
|
|
basicmbr.cc \
|
|
mbr.cc \
|
|
gpt.cc \
|
|
bsd.cc \
|
|
parttypes.cc \
|
|
attributes.cc \
|
|
diskio.cc \
|
|
diskio-unix.cc \
|
|
android_popt.cc \
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPP_EXTENSION := .cc
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) external/e2fsprogs/lib
|
|
LOCAL_SRC_FILES := $(sgdisk_src_files)
|
|
LOCAL_CFLAGS += -Wno-unused-parameter -Werror
|
|
|
|
LOCAL_SHARED_LIBRARIES := libext2_uuid
|
|
|
|
LOCAL_MODULE := sgdisk
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CPP_EXTENSION := .cc
|
|
|
|
ifeq ($(HOST_OS),darwin)
|
|
LOCAL_CFLAGS := -D_FILE_OFFSET_BITS=64 -Doff64_t=off_t
|
|
endif
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) external/e2fsprogs/lib
|
|
LOCAL_SRC_FILES := $(sgdisk_src_files)
|
|
LOCAL_CFLAGS += -Wno-unused-parameter -Werror
|
|
|
|
LOCAL_SHARED_LIBRARIES := libext2_uuid
|
|
|
|
LOCAL_MODULE := sgdisk_host
|
|
LOCAL_MODULE_STEM := sgdisk
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|