summaryrefslogtreecommitdiff
path: root/third_party/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/Makefile')
-rw-r--r--third_party/Makefile49
1 files changed, 0 insertions, 49 deletions
diff --git a/third_party/Makefile b/third_party/Makefile
deleted file mode 100644
index 6a43479c..00000000
--- a/third_party/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-include ../build.mak
-include $(PJDIR)/build/host-$(HOST_NAME).mak
-
-DIRS = build/resample
-
-ifeq (,1)
-else
-DIRS += build/gsm
-endif
-
-ifeq (,1)
-else
-DIRS += build/ilbc
-endif
-
-ifeq (,1)
-else
-DIRS += build/speex
-endif
-
-ifeq (pa_unix,pa_old_darwinos)
-DIRS += build/portaudio
-endif
-
-ifeq (pa_unix,pa_darwinos)
-DIRS += build/portaudio
-endif
-
-ifeq (pa_unix,pa_win32)
-DIRS += build/portaudio
-endif
-
-ifeq (pa_unix,pa_unix)
-DIRS += build/portaudio
-endif
-
-
-
-all clean dep depend distclean realclean:
- for dir in $(DIRS); do \
- if [ -d $$dir ]; then \
- if $(MAKE) $(MAKE_FLAGS) -C $$dir $@; then \
- true; \
- else \
- exit 1; \
- fi; \
- fi; \
- done
-