blob: cdb9009ec1ba6d5c7f881f0d6c03017008d6846c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for JIT code that's provider independent.
#
# Note that the LLVM JIT provider is recursed into by src/Makefile,
# not from here.
#
# IDENTIFICATION
# src/backend/jit/Makefile
#
#-------------------------------------------------------------------------
subdir = src/backend/jit
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
override CPPFLAGS += -DDLSUFFIX=\"$(DLSUFFIX)\"
OBJS = jit.o
include $(top_srcdir)/src/backend/common.mk
|