Changeset 3351


Ignore:
Timestamp:
Oct 21, 2010 2:21:37 AM (13 years ago)
Author:
bennylp
Message:

Misc (re #1134): added the ability to add python module build with the top level build, by adding pjsip-apps/src/python into EXTRA_DIRS in user.mak. Also changed the make command in python module to just build the module without installing since installing needs root permission

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/Makefile

    r3063 r3351  
    11include build.mak 
    22include build/host-$(HOST_NAME).mak 
     3-include user.mak 
    34 
    4 DIRS = pjlib pjlib-util pjnath third_party pjmedia pjsip pjsip-apps 
     5DIRS = pjlib/build pjlib-util/build pjnath/build third_party/build pjmedia/build pjsip/build pjsip-apps/build $(EXTRA_DIRS) 
    56 
    67ifdef MINSIZE 
     
    1011all clean dep depend distclean print realclean: 
    1112        for dir in $(DIRS); do \ 
    12                 if $(MAKE) $(MAKE_FLAGS) -C $$dir/build $@; then \ 
     13                if $(MAKE) $(MAKE_FLAGS) -C $$dir $@; then \ 
    1314                    true; \ 
    1415                else \ 
  • pjproject/trunk/pjsip-apps/src/python/Makefile

    r2346 r3351  
    11all: 
    2         python setup.py install 
     2        python setup.py build 
    33 
    44clean: 
Note: See TracChangeset for help on using the changeset viewer.