mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
33 lines
869 B
Makefile
33 lines
869 B
Makefile
OPENLIBM_HOME=$(abspath .)
|
|
include ./Make.inc
|
|
|
|
SUBDIRS = src ld80 $(ARCH) bsdsrc amos Faddeeva
|
|
|
|
define INC_template
|
|
TEST=test
|
|
override CUR_SRCS = $(1)_SRCS
|
|
include $(1)/Make.files
|
|
SRCS += $$(addprefix $(1)/,$$($(1)_SRCS))
|
|
endef
|
|
|
|
DIR=test
|
|
|
|
$(foreach dir,$(SUBDIRS),$(eval $(call INC_template,$(dir))))
|
|
|
|
DUPLICATE_NAMES = $(filter $(patsubst %.S,%,$($(ARCH)_SRCS)),$(patsubst %.c,%,$(src_SRCS)))
|
|
DUPLICATE_SRCS = $(addsuffix .c,$(DUPLICATE_NAMES))
|
|
|
|
OBJS = $(patsubst %.f,%.f.o,\
|
|
$(patsubst %.S,%.S.o,\
|
|
$(patsubst %.c,%.c.o,$(filter-out $(addprefix src/,$(DUPLICATE_SRCS)),$(SRCS)))))
|
|
|
|
all: libopenlibm.a libopenlibm.$(SHLIB_EXT)
|
|
$(MAKE) -C test
|
|
libopenlibm.a: $(OBJS)
|
|
ar -rcs libopenlibm.a $(OBJS)
|
|
libopenlibm.$(SHLIB_EXT): $(OBJS)
|
|
$(FC) -shared $(OBJS) $(LDFLAGS) -o libopenlibm.$(SHLIB_EXT)
|
|
|
|
distclean:
|
|
rm -f $(OBJS) *.a *.$(SHLIB_EXT)
|
|
$(MAKE) -C test clean
|