summaryrefslogtreecommitdiff
path: root/src/tre
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2012-10-04 18:02:24 +0100
committerReuben Thomas <rrt@sc3d.org>2012-10-04 18:02:24 +0100
commit41d9fad85070f354b097b8be9aa34bd588314cdb (patch)
tree533aeb4f87143f79a1d057c23869f2f10b6573fe /src/tre
parenta3dd13c7a178a58ecabac18af29a38b71ec2e165 (diff)
downloadlrexlib-41d9fad85070f354b097b8be9aa34bd588314cdb.tar.gz
Replace build systems with LuaRocks.
A single Makefile remains to take care of tests, distribution, release and documentation. As a result, rockspecs are automatically generated for all lrexlib flavours (previously, only POSIX and PCRE were available).
Diffstat (limited to 'src/tre')
-rw-r--r--src/tre/Makefile43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/tre/Makefile b/src/tre/Makefile
deleted file mode 100644
index 6618626..0000000
--- a/src/tre/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# makefile for rex_tre library
-
-include ../defaults.mak
-
-# === USER SETTINGS ===
-# ===========================================================================
-
-# These are default values.
-INC =
-LIB = -ltre
-
-# If the default settings don't work for your system,
-# try to uncomment and edit the settings below.
-#INC = -I/usr/include
-#LIB = -lc
-
-# WARNING:
-# Make sure you set both the INC and LIB variables correctly, as
-# otherwise you risk using a header file and library that do not
-# match, and you may well get segmentation faults (or worse).
-
-# Target name
-REGNAME = tre
-
-# ===========================================================================
-# === END OF USER SETTINGS ===
-
-OBJ = ltre.o ../common.o # ltre_w.o
-
-include ../common.mak
-
-# static TRE regexp library binding
-ar_tre: $(TRG_AR)
-
-# dynamic TRE regexp library binding
-so_tre: $(TRG_SO)
-
-# Dependencies
-ltre.o: ltre.c ../common.h ../algo.h
-ltre_w.o: ltre_w.c ../common.h ../algo.h
-../common.o: ../common.c ../common.h
-
-# (End of Makefile)