source: main/trunk/gs2-core/build-src/win32.mak@ 26655

Last change on this file since 26655 was 22832, checked in by mdewsnip, 14 years ago

Lots of improvements, particularly to Windows makefiles.

File size: 548 bytes
RevLine 
[21691]1###########################################################################
2#
3# win32.mak -- Windows Makefile for build-src
4#
[22728]5# By Michael Dewsnip
[21691]6#
[22728]7# Copyright (C) 2010 DL Consulting Ltd.
[21691]8#
9###########################################################################
10
11
12SUBDIRS = src
13
14
[22832]15all:
16 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
[21691]17
[22832]18install:
19 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
[21691]20
[22832]21clean:
22 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak clean && cd $(MAKEDIR)
Note: See TracBrowser for help on using the repository browser.