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

    r22824 r22832  
    2222
    2323
    24 all: win32.mak $(SUBDIRS)
     24all:
     25    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
    2526
    26 install: win32.mak $(SUBDIRS)
     27install:
     28    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
    2729
    28 $(SUBDIRS): FORCE
    29     cd "$@"
    30     $(MAKE) /f win32.mak
    31     $(MAKE) /f win32.mak install
    32     cd "$(MAKEDIR)"
    33 
    34 FORCE:
     30clean:
     31    @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak clean && cd $(MAKEDIR)
Note: See TracChangeset for help on using the changeset viewer.