You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
28 lines
605 B
Makefile
Executable File
28 lines
605 B
Makefile
Executable File
#******************************************************************************************
|
|
# $Id: Makefile 3048 2012-04-04 15:33:45Z rdempsey $
|
|
#
|
|
# Copyright (C) 2009-2012 Calpont Corporation
|
|
# All rights reserved
|
|
#*****************************************************************************************/
|
|
include ../../rules.mak
|
|
.PHONY: install clean test docs coverage leakcheck
|
|
|
|
LIBRARY=libjemalloc.so
|
|
VERSION=3.3.0
|
|
FULL_NAME=$(LIBRARY).$(VERSION)
|
|
|
|
all:
|
|
|
|
install:
|
|
$(INSTALL) $(FULL_NAME) $(INSTALL_ROOT_LIB)
|
|
cd $(INSTALL_ROOT_LIB) && \
|
|
ln -sf $(FULL_NAME) $(LIBRARY)
|
|
|
|
bootstrap:
|
|
|
|
docs:
|
|
|
|
clean:
|
|
|
|
|