summaryrefslogtreecommitdiffstats
path: root/tinyHTTP/src/makefile
blob: 056978f004cf37c68eda49c7efde564799320264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
APP := lib$(PROJECT).so

INSTALL_DIR = /system/lib

CFLAGS := $(CFLAGS) -I$(DOUBANGO_HOME)/tinySAK/src -I$(DOUBANGO_HOME)/tinyNET/src -I$(DOUBANGO_HOME)/$(PROJECT)/include 
LDFLAGS := $(LDFLAGS) -Wl,-soname,lib$(PROJECT).so,-Bsymbolic,-shared,--whole-archive -ltinySAK -ltinyNET

all: $(APP)

OBJS = \
	thttp.o\
	thttp_message.o\
	thttp_operation.o\
	thttp_transport.o\
	thttp_url.o
	###################
	## auth
	###################
OBJS +=	auth/thttp_auth.o
	###################
	## headers
	###################
OBJS +=	headers/thttp_header.o\
	headers/thttp_header_Authorization.o\
	headers/thttp_header_Content_Length.o\
	headers/thttp_header_Content_Type.o\
	headers/thttp_header_Dummy.o\
	headers/thttp_header_Proxy_Authenticate.o\
	headers/thttp_header_WWW_Authenticate.o
	###################
	## parsers
	###################
OBJS +=	parsers/thttp_parser_header.o\
	parsers/thttp_parser_message.o\
	parsers/thttp_parser_url.o
	
$(APP): $(OBJS)
	$(CPP) $(LDFLAGS) -o $@ $^ 

%.o: %.c
	$(CC) -c $(INCLUDE) $(CFLAGS) $< -o $@
	
install: $(APP)
	$(ANDROID_SDK_ROOT)/tools/adb remount
	$(ANDROID_SDK_ROOT)/tools/adb push $(APP) $(INSTALL_DIR)/$(APP)
	$(ANDROID_SDK_ROOT)/tools/adb shell chmod 777 $(INSTALL_DIR)/$(APP)
	
clean:
	@rm -f $(OBJS) $(APP)
OpenPOWER on IntegriCloud