source: main/trunk/gs2-core/win32.mak@ 22765

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

Changing all the configure scripts and makefiles I created (from scratch, to use autoconf and automake) to have my name and copyright DL Consulting Ltd.

File size: 776 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
12GSDL_DIR = $(MAKEDIR)
13MAKE = $(MAKE) GSDLHOME=$(GSDL_DIR)
14
15
16# Option: Lucene support (enabled by default)
17ENABLE_LUCENE = 1
18!IF $(ENABLE_LUCENE)
19MAKE = $(MAKE) ENABLE_LUCENE=1
20!ENDIF
21
22# Option: SQLite support (enabled by default)
23USE_SQLITE = 1
24!IF $(USE_SQLITE)
25MAKE = $(MAKE) USE_SQLITE=1
26!ENDIF
27
28
29SUBDIRS = common-src build-src runtime-src
30
31
32all: win32.mak $(SUBDIRS)
33
34install: win32.mak $(SUBDIRS)
35
36$(SUBDIRS): FORCE
37 cd "$@"
38 $(MAKE) /f win32.mak
39 $(MAKE) /f win32.mak install
40 cd "$(MAKEDIR)"
41
42FORCE:
Note: See TracBrowser for help on using the repository browser.