source: main/trunk/gs2-core/common-src/win32.mak@ 22763

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

Changed Windows gs2-core makefiles to compile and use Expat from common-src/packages/expat instead of common-src/packages/windows/expat/expat.

File size: 697 bytes
Line 
1###########################################################################
2#
3# win32.mak -- Windows Makefile for common-src
4#
5# By Michael Dewsnip
6#
7# Copyright (C) 2010 DL Consulting Ltd.
8#
9###########################################################################
10
11
12# Option: Lucene support
13!IF $(ENABLE_LUCENE)
14LUCENE_SUBDIRS = indexers packages\expat
15!ENDIF
16
17# Option: SQLite support
18!IF $(USE_SQLITE)
19SQLITE_SUBDIRS = packages\sqlite
20!ENDIF
21
22SUBDIRS = $(LUCENE_SUBDIRS) $(SQLITE_SUBDIRS) packages\windows\crypt\crypt src\lib
23
24
25all: win32.mak $(SUBDIRS)
26
27install: win32.mak $(SUBDIRS)
28
29$(SUBDIRS): FORCE
30 cd "$@"
31 $(MAKE) /f win32.mak
32 $(MAKE) /f win32.mak install
33 cd "$(MAKEDIR)"
34
35FORCE:
Note: See TracBrowser for help on using the repository browser.