Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/main/Makefile

    r3 r1  
    11DIRS = pjlib pjsdp pjmedia pjsip 
    22 
     3MAKE_FLAGS := TARGET=$(TARGET) 
     4 
    35ifdef MINSIZE 
    4 MAKE_FLAGS := MINSIZE=1 
     6MAKE_FLAGS := $(MAKE_FLAGS) MINSIZE=1 
    57endif 
    68 
     
    2022BINS = pjsip/bin/pjsua$(EXE)  
    2123 
     24include pjlib/build/make-$(TARGET).inc 
     25 
    2226size: 
     27        @echo 'TARGET=$(TARGET)' 
    2328        @echo -n 'Date: ' 
    2429        @date 
     
    3742        done 
    3843 
    39 dos2unix: 
    40         for f in `find . | egrep '(mak|h|c|S|s|Makefile)$$'`; do \ 
    41                 dos2unix "$$f" > dos2unix.tmp; \ 
    42                 cp dos2unix.tmp "$$f"; \ 
    43         done 
    44         rm -f dos2unix.tmp 
    45  
    46 xhdrid: 
    47         for f in `find . | egrep '\.(h|c|S|s|cpp|hpp)$$'`; do \ 
    48                 echo Processing $$f...; \ 
    49                 cat $$f | sed 's/.*\$$Author\$$/ */' > /tmp/id; \ 
    50                 cp /tmp/id $$f; \ 
    51         done 
    52  
Note: See TracChangeset for help on using the changeset viewer.