You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pjproject/c++-build.mak

21 lines
350 B

include build.mak
include build/host-$(HOST_NAME).mak
DIRS = pjlib pjlib-util pjnath pjmedia pjsip
ifdef MINSIZE
MAKE_FLAGS := MINSIZE=1
endif
export CPP_MODE=1
all clean dep depend distclean doc print realclean:
for dir in $(DIRS); do \
if $(MAKE) $(MAKE_FLAGS) -C $$dir/build $@; then \
true; \
else \
exit 1; \
fi; \
done