mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
561 B
23 lines
561 B
![]()
8 years ago
|
#-------------------------------------------------------------------------
|
||
|
#
|
||
|
# 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
|