Skip to content

Commit

Permalink
Merge pull request jduck#1 from strazzere/master
Browse files Browse the repository at this point in the history
Add Android.mk / make file
  • Loading branch information
jduck committed May 1, 2014
2 parents 38c7567 + f1563b5 commit d1d8c3a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
privmap.c

LOCAL_MODULE := privmap

include $(BUILD_STATIC_EXECUTABLE)
include $(BUILD_EXECUTABLE)
include $(call all-makefiles-under,$(LOCAL_PATH))
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
all:
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk

clean:
rm *~

0 comments on commit d1d8c3a

Please sign in to comment.