source: main/tags/3.05rc2/gs2-core/win32.mak@ 32704

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

Lots of improvements, particularly to Windows makefiles.

File size: 790 bytes
Line 
1###########################################################################
2#
3# win32.mak -- Windows Makefile for gs2-core
4#
5# By Michael Dewsnip
6#
7# Copyright (C) 2010 DL Consulting Ltd.
8#
9###########################################################################
10
11
12# Option: Lucene support (enabled by default)
13ENABLE_LUCENE = 1
14MAKE = $(MAKE) ENABLE_LUCENE=$(ENABLE_LUCENE)
15
16# Option: SQLite support (enabled by default)
17USE_SQLITE = 1
18MAKE = $(MAKE) USE_SQLITE=$(USE_SQLITE)
19
20
21SUBDIRS = common-src build-src runtime-src
22
23
24all:
25 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
26
27install:
28 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
29
30clean:
31 @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak clean && cd $(MAKEDIR)
Note: See TracBrowser for help on using the repository browser.