summaryrefslogtreecommitdiffstats
path: root/branches/1.0/tinyHTTP/droid-makefile
diff options
context:
space:
mode:
authorMamadou DIOP <bossiel@yahoo.fr>2015-08-17 01:56:35 +0200
committerMamadou DIOP <bossiel@yahoo.fr>2015-08-17 01:56:35 +0200
commit631fffee8a28b1bec5ed1f1d26a20e0135967f99 (patch)
tree74afe3bf3efe15aa82bcd0272b2b0f4d48c2d837 /branches/1.0/tinyHTTP/droid-makefile
parent7908865936604036e6f200f1b5e069f8752f3a3a (diff)
downloaddoubango-631fffee8a28b1bec5ed1f1d26a20e0135967f99.zip
doubango-631fffee8a28b1bec5ed1f1d26a20e0135967f99.tar.gz
-
Diffstat (limited to 'branches/1.0/tinyHTTP/droid-makefile')
-rw-r--r--branches/1.0/tinyHTTP/droid-makefile55
1 files changed, 0 insertions, 55 deletions
diff --git a/branches/1.0/tinyHTTP/droid-makefile b/branches/1.0/tinyHTTP/droid-makefile
deleted file mode 100644
index 5f74e38..0000000
--- a/branches/1.0/tinyHTTP/droid-makefile
+++ /dev/null
@@ -1,55 +0,0 @@
-APP := lib$(PROJECT)_$(MARCH).$(EXT)
-
-CFLAGS := $(CFLAGS_LIB) -I../tinySAK/src -I../tinyNET/src -I./include
-LDFLAGS := $(LDFLAGS_LIB) -ltinySAK_$(MARCH) -ltinyNET_$(MARCH)
-
-all: $(APP)
-
-OBJS = \
- src/thttp.o\
- src/thttp_action.o\
- src/thttp_dialog.o\
- src/thttp_event.o\
- src/thttp_message.o\
- src/thttp_session.o\
- src/thttp_url.o
- ###################
- ## AUTH
- ###################
-OBJS += src/auth/thttp_auth.o\
- src/auth/thttp_challenge.o
- ###################
- ## HEADERS
- ###################
-OBJS += src/headers/thttp_header.o\
- src/headers/thttp_header_Authorization.o\
- src/headers/thttp_header_Content_Length.o\
- src/headers/thttp_header_Content_Type.o\
- src/headers/thttp_header_Dummy.o\
- src/headers/thttp_header_ETag.o\
- src/headers/thttp_header_Transfer_Encoding.o\
- src/headers/thttp_header_WWW_Authenticate.o
- ###################
- ## parsers
- ###################
-OBJS += src/parsers/thttp_parser_header.o\
- src/parsers/thttp_parser_message.o\
- src/parsers/thttp_parser_url.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