1#***********************************************************************
2#
3# Makefile
4#
5#***********************************************************************
6CC = gcc
7
8CFLAGS = -g -rdynamic
9LIBS = -lcurl -lxml2 -lssl -lcrypto
10
11all: asuswebstorage
12#all: inotify
13
14#https: https.o md5.o urlencode.o oauth.o oauth_http.o xmalloc.o
15asuswebstorage: asuswebstorage.o api.o function.o 
16	$(CC) $(CFLAGS) $(LIBS)  $^ -o $@ 
17
18.PHONY: clean
19clean:
20	-rm -rf *.o asuswebstorage
21