summaryrefslogtreecommitdiffstats
path: root/tinyIPSec/droid-makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tinyIPSec/droid-makefile')
-rw-r--r--tinyIPSec/droid-makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/tinyIPSec/droid-makefile b/tinyIPSec/droid-makefile
new file mode 100644
index 0000000..2c320e0
--- /dev/null
+++ b/tinyIPSec/droid-makefile
@@ -0,0 +1,32 @@
+APP := lib$(PROJECT)_$(MARCH).$(EXT)
+
+CFLAGS := $(CFLAGS_LIB) -I../tinySAK/src -I./src
+LDFLAGS := -ltinySAK_$(MARCH) $(LDFLAGS_LIB)
+
+all: $(APP)
+
+OBJS = \
+ src/tipsec.o\
+ src/tipsec_common.o\
+ src/tipsec_racoon.o\
+ src/tipsec_vista.o\
+ src/tipsec_xp.o
+
+
+$(APP): $(OBJS)
+ifeq ($(EXT), a)
+ $(AR) rcs $@ $^
+else
+ $(CC) $(LDFLAGS) -o $@ $^
+endif
+
+%.o: %.c
+ $(CC) -c $(INCLUDE) $(CFLAGS) $< -o $@
+
+install: $(APP)
+ $(ANDROID_SDK_ROOT)/tools/adb remount
+ $(ANDROID_SDK_ROOT)/tools/adb push $(APP) $(LIB_DIR)/$(APP)
+ $(ANDROID_SDK_ROOT)/tools/adb shell chmod 777 $(LIB_DIR)/$(APP)
+
+clean:
+ @rm -f $(OBJS) $(APP) \ No newline at end of file
OpenPOWER on IntegriCloud