mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
25 lines
481 B
Makefile
25 lines
481 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 = tokuwindows.$(AEXT)
|
||
|
|
||
|
install: $(LIBPORTABILITY)
|
||
|
|
||
|
$(LIBPORTABILITY): $(TARGET)
|
||
|
$(MAYBEATSIGN)cp $< $@
|
||
|
|
||
|
$(TARGET): $(OBJS)
|
||
|
|
||
|
clean:
|
||
|
$(MAYBEATSIGN)rm -rf $(TARGET) $(LIBPORTABILITY)
|
||
|
|