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
|
# Project: rex_tre
# User Settings ------------------------------------------------------------
# path of TRE include files
REGEXINC = $(PATH_WORK)\system\include
# --------------------------------------------------------------------------
PROJECT = rex_tre
MYINCS = -I$(REGEXINC)
MYLIBS = -ltre
OBJ = ltre.o common.o
PROJDIR = tre
TESTNAME = tre
# Uncomment the following line to add wide-character functions (in alpha state).
# ADDWIDECHARFUNCS = 1
ifdef ADDWIDECHARFUNCS
OBJ += ltre_w.o
MYCFLAGS += -DREX_ADDWIDECHARFUNCS
endif
include _mingw.mak
ltre.o : common.h algo.h
ltre_w.o : common.h algo.h
common.o : common.h
|