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/common-src/win32.mak

    r22826 r22832  
    2626
    2727
    28 all: win32.mak $(SUBDIRS)
     28all:
     29    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
    2930
    30 install: win32.mak $(SUBDIRS)
     31install:
     32    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
    3133
    32 $(SUBDIRS): FORCE
    33     cd "$@"
    34     $(MAKE) /f win32.mak
    35     $(MAKE) /f win32.mak install
    36     cd "$(MAKEDIR)"
    37 
    38 FORCE:
     34clean:
     35    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak clean && cd $(MAKEDIR)
Note: See TracChangeset for help on using the changeset viewer.