mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
2f856f7d29
git-svn-id: file:///svn/toku/tokudb@8667 c7de825b-a66e-492c-adef-691d508d4ae1
24 lines
465 B
Makefile
24 lines
465 B
Makefile
# -*- Mode: Makefile -*-
|
|
|
|
.DEFAULT_GOAL=install
|
|
TOKUROOT=../
|
|
INCLUDEDIRS=-I.
|
|
SKIP_LIBPORTABILITYRULE=1
|
|
include $(TOKUROOT)toku_include/Makefile.include
|
|
|
|
OPT_AROPT=-qnoipo #Disable ipo for lib creation even when optimization is on.
|
|
|
|
SRCS = $(wildcard *.c)
|
|
OBJS = $(patsubst %.c,%.$(OEXT),$(SRCS))
|
|
TARGET = libtokuportability.$(AEXT)
|
|
|
|
install: $(LIBPORTABILITY)
|
|
|
|
$(LIBPORTABILITY): $(TARGET)
|
|
cp $< $@
|
|
|
|
$(TARGET): $(OBJS)
|
|
|
|
clean:
|
|
rm -rf $(TARGET) $(LIBPORTABILITY)
|
|
|