Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
xxr0ss committed Nov 7, 2022
2 parents 4f07287 + 70753f2 commit 0b8d76e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions jni/Android.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
LOCAL_PATH := $(call my-dir)

### inotify

#### inotifywait
include $(CLEAR_VARS)

# build PIE (for Android 4.1.2 - 4.4 / 5.0 or later)
Expand All @@ -10,14 +11,14 @@ LOCAL_LDFLAGS += -fPIE -pie
# build non-PIE (for Android 4.0.3 or earlier)
#LOCAL_CFLAGS = -std=c99

LOCAL_C_INCLUDES := \
./jni/libinotifytools

LOCAL_C_INCLUDES := ./jni/libinotifytools
LOCAL_MODULE := inotifywait
LOCAL_SRC_FILES := wrap_inotifywait.c common.c libinotifytools/inotifytools.c libinotifytools/redblack.c

include $(BUILD_EXECUTABLE)



#### inotifywatch
include $(CLEAR_VARS)

Expand All @@ -28,9 +29,7 @@ LOCAL_LDFLAGS += -fPIE -pie
# build non-PIE (for Android 4.0.3 or earlier)
#LOCAL_CFLAGS = -std=c99

LOCAL_C_INCLUDES := \
./jni/libinotifytools

LOCAL_C_INCLUDES := ./jni/libinotifytools
LOCAL_MODULE := inotifywatch
LOCAL_SRC_FILES := wrap_inotifywatch.c common.c libinotifytools/inotifytools.c libinotifytools/redblack.c

Expand Down
2 changes: 1 addition & 1 deletion jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
APP_ABI := arm64-v8a
APP_ABI := arm64-v8a armeabi-v7a

0 comments on commit 0b8d76e

Please sign in to comment.