Last change
on this file since 24332 was 22832, checked in by mdewsnip, 13 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)
|
---|
13 | ENABLE_LUCENE = 1
|
---|
14 | MAKE = $(MAKE) ENABLE_LUCENE=$(ENABLE_LUCENE)
|
---|
15 |
|
---|
16 | # Option: SQLite support (enabled by default)
|
---|
17 | USE_SQLITE = 1
|
---|
18 | MAKE = $(MAKE) USE_SQLITE=$(USE_SQLITE)
|
---|
19 |
|
---|
20 |
|
---|
21 | SUBDIRS = common-src build-src runtime-src
|
---|
22 |
|
---|
23 |
|
---|
24 | all:
|
---|
25 | @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak && cd $(MAKEDIR)
|
---|
26 |
|
---|
27 | install:
|
---|
28 | @FOR %i IN ($(SUBDIRS)) DO cd %i && $(MAKE) /f win32.mak install && cd $(MAKEDIR)
|
---|
29 |
|
---|
30 | clean:
|
---|
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.