Ignore:
Timestamp:
2010-09-01T17:25:37+12:00 (14 years ago)
Author:
mdewsnip
Message:

Lots of improvements, particularly to Windows makefiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/build-src/win32.mak

    r22728 r22832  
    1313
    1414
    15 all: win32.mak $(SUBDIRS)
     15all:
     16    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
    1617
    17 install: win32.mak $(SUBDIRS)
     18install:
     19    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
    1820
    19 $(SUBDIRS): FORCE
    20     cd "$@"
    21     $(MAKE) /f win32.mak
    22     $(MAKE) /f win32.mak install
    23     cd "$(MAKEDIR)"
    24 
    25 FORCE:
     21clean:
     22    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak clean && cd $(MAKEDIR)
Note: See TracChangeset for help on using the changeset viewer.