Ignore:
Timestamp:
Oct 23, 2013 6:39:47 AM (11 years ago)
Author:
ming
Message:

Fixed #1707: Add support for paralel build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/build/Makefile

    r4308 r4632  
    7878 
    7979 
    80 .PHONY: dep depend pjlib pjlib-test clean realclean distclean 
     80.PHONY: dep depend clean realclean distclean 
     81.PHONY: $(TARGETS) 
     82.PHONY: $(PJLIB_LIB) $(TEST_EXE) 
    8183 
    8284dep: depend 
    8385 
    84 pjlib: ../include/pj/config_site.h 
     86pjlib: $(PJLIB_LIB) 
     87$(PJLIB_LIB): ../include/pj/config_site.h 
    8588        $(MAKE) -f $(RULES_MAK) APP=PJLIB app=pjlib $(PJLIB_LIB) 
    8689 
    8790../include/pj/config_site.h: 
    8891        touch ../include/pj/config_site.h 
    89          
    90 pjlib-test: pjlib 
     92 
     93pjlib-test: $(TEST_EXE) 
     94$(TEST_EXE): $(PJLIB_LIB) 
    9195        $(MAKE) -f $(RULES_MAK) APP=TEST app=pjlib-test $(TEST_EXE) 
    9296 
Note: See TracChangeset for help on using the changeset viewer.