summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/pcre/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/util/pcre/Makefile')
-rw-r--r--crawl-ref/source/util/pcre/Makefile55
1 files changed, 0 insertions, 55 deletions
diff --git a/crawl-ref/source/util/pcre/Makefile b/crawl-ref/source/util/pcre/Makefile
deleted file mode 100644
index 78602c2085..0000000000
--- a/crawl-ref/source/util/pcre/Makefile
+++ /dev/null
@@ -1,55 +0,0 @@
-# -*- Makefile -*- for PCRE (Win32, MinGW)
-
-ifneq ($(findstring $(MAKEFLAGS),s),s)
-ifndef V
- QUIET_CC = @echo ' ' CC $@;
- QUIET_AR = @echo ' ' AR $@;
- export V
-endif
-endif
-
-OBJECTS := \
- pcre_chartables.o \
- pcre_compile.o \
- pcre_config.o \
- pcre_dfa_exec.o \
- pcre_exec.o \
- pcre_fullinfo.o \
- pcre_get.o \
- pcre_globals.o \
- pcre_info.o \
- pcre_maketables.o \
- pcre_newline.o \
- pcre_ord2utf8.o \
- pcre_refcount.o \
- pcre_study.o \
- pcre_tables.o \
- pcre_try_flipped.o \
- pcre_ucp_searchfuncs.o \
- pcre_valid_utf8.o \
- pcre_version.o \
- pcre_xclass.o
-
-CC ?= gcc
-AR := ar rcu
-RANLIB := ranlib
-DEL := rm -f
-
-CFLAGS += -I. -DHAVE_CONFIG_H
-LDFLAGS :=
-
-LIBNAME := libpcre.a
-
-all: $(LIBNAME)
-
-clean:
- $(DEL) $(LIBNAME)
- $(DEL) $(OBJECTS)
-
-$(LIBNAME) : $(OBJECTS)
- $(QUIET_AR)$(AR) $@ $?
- @$(RANLIB) $@
-
-%.o: %.c
- $(QUIET_CC)$(CC) $(CFLAGS) -o $@ -c $<
-