summaryrefslogtreecommitdiffstats
path: root/branches/1.0/tinyMEDIA/droid-makefile
diff options
context:
space:
mode:
Diffstat (limited to 'branches/1.0/tinyMEDIA/droid-makefile')
-rw-r--r--branches/1.0/tinyMEDIA/droid-makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/branches/1.0/tinyMEDIA/droid-makefile b/branches/1.0/tinyMEDIA/droid-makefile
deleted file mode 100644
index 7c7b102..0000000
--- a/branches/1.0/tinyMEDIA/droid-makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-APP := lib$(PROJECT)_$(MARCH).$(EXT)
-
-CFLAGS := $(CFLAGS_LIB) -I../tinySAK/src -I../tinyNET/src -I../tinySDP/include -I./include
-LDFLAGS := $(LDFLAGS_LIB) -ltinySAK_$(MARCH) -ltinyNET_$(MARCH) -ltinySDP_$(MARCH) -lm
-
-all: $(APP)
-
-OBJS = \
- src/tmedia.o \
- src/tmedia_codec.o \
- src/tmedia_codec_dummy.o \
- src/tmedia_common.o \
- src/tmedia_consumer.o \
- src/tmedia_denoise.o \
- src/tmedia_params.o \
- src/tmedia_producer.o \
- src/tmedia_qos.o \
- src/tmedia_session.o \
- src/tmedia_session_dummy.o \
- src/tmedia_session_ghost.o \
- \
- src/content/tmedia_content.o \
- src/content/tmedia_content_cpim.o \
- src/content/tmedia_content_multipart.o \
- src/content/tmedia_content_sip_frag.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