summaryrefslogtreecommitdiff
path: root/windows/mingw/rex_spencer.mak
blob: 5a9f4f254906f2578a5a012d4a1c2d082bebee2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Project: rex_spencer

# User Settings ------------------------------------------------------------
# path of Lua include files
LUAINC = s:\progr\work\system\include

# path of Spencer's include files
REGEXINC = s:\progr\work\system\include\rxspencer

# path of Lua DLL and rxspencer.dll
DLLPATH = c:\exe

# name of Lua DLL to link to (.dll should be omitted)
LUADLL = lua5.1

# path to install rex_spencer.dll
INSTALLPATH = s:\exe\lib\lua\5.1
# --------------------------------------------------------------------------

PROJECT     = rex_spencer
MYINCS      = -I$(REGEXINC) -I$(LUAINC) 
MYLIBS      = -L$(DLLPATH) -lrxspencer -l$(LUADLL)
OBJ         = lposix.o common.o
MYCFLAGS    = -W -Wall -O2
EXPORTED    = 'luaopen_$(PROJECT)'
SRCPATH     = ..\..\src;..\..\src\posix
TESTPATH    = ..\..\test
TESTNAME    = spencer

include _mingw.mak

lposix.o  : common.h algo.h
common.o  : common.h