source: main/trunk/gs2-core/runtime-src/win32.mak

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

Lots of improvements, particularly to Windows makefiles.

File size: 595 bytes
Line 
1###########################################################################
2#
3# win32.mak -- Windows Makefile for runtime-src
4#
5# By Michael Dewsnip
6#
7# Copyright (C) 2010 DL Consulting Ltd.
8#
9###########################################################################
10
11
12SUBDIRS = src\colservr src\protocol src\recpt src\oaiservr
13
14
15all:
16 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
17
18install:
19 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
20
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.