mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
624b9272c4
git-svn-id: file:///svn/toku/tokudb.1032b@8076 c7de825b-a66e-492c-adef-691d508d4ae1
24 lines
488 B
Makefile
24 lines
488 B
Makefile
# -*- Mode: Makefile -*-
|
|
|
|
.DEFAULT_GOAL=install
|
|
TOKUROOT=../
|
|
INCLUDEDIRS=-I.
|
|
SKIP_LIBPORTABILITYRULE=1
|
|
include $(TOKUROOT)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)
|
|
$(MAYBEATSIGN)cp $< $@
|
|
|
|
$(TARGET): $(OBJS)
|
|
|
|
clean:
|
|
$(MAYBEATSIGN)rm -rf $(TARGET) $(LIBPORTABILITY)
|
|
|