- Timestamp:
- Apr 18, 2007 9:24:31 AM (18 years ago)
- Location:
- pjproject/branches/split-3rd-party/third_party/build
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/split-3rd-party/third_party/build
-
Property
svn:ignore
set to
os-auto.mak
-
Property
svn:ignore
set to
-
pjproject/branches/split-3rd-party/third_party/build/Makefile
r1201 r1202 1 include ../build.mak 2 include $(PJDIR)/build/host-$(HOST_NAME).mak 3 4 DIRS = build/resample 5 6 ifeq (@ac_no_gsm_codec@,1) 7 else 8 DIRS += build/gsm 9 endif 10 11 ifeq (@ac_no_ilbc_codec@,1) 12 else 13 DIRS += build/ilbc 14 endif 15 16 ifeq (@ac_no_speex_codec@,1) 17 else 18 DIRS += build/speex 19 endif 20 21 ifeq (@ac_pjmedia_snd@,pa_old_darwinos) 22 DIRS += build/portaudio 23 endif 24 25 ifeq (@ac_pjmedia_snd@,pa_darwinos) 26 DIRS += build/portaudio 27 endif 28 29 ifeq (@ac_pjmedia_snd@,pa_win32) 30 DIRS += build/portaudio 31 endif 32 33 ifeq (@ac_pjmedia_snd@,pa_unix) 34 DIRS += build/portaudio 35 endif 36 37 1 include ../../build.mak 2 include $(PJDIR)/build/common.mak 38 3 39 4 all clean dep depend distclean realclean: 40 5 for dir in $(DIRS); do \ 41 if [ -d $$dir ]; then \42 6 if $(MAKE) $(MAKE_FLAGS) -C $$dir $@; then \ 43 7 true; \ … … 45 9 exit 1; \ 46 10 fi; \ 47 fi; \48 11 done 49 12
Note: See TracChangeset
for help on using the changeset viewer.