blob: 8729b9454403e3158f74938f55ee839df61efd8a [file] [log] [blame]
FWRISC_FPGA_TESTS_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
ifneq (1,$(RULES))
SRC_DIRS += $(FWRISC_FPGA_TESTS_DIR)
FWRISC_FPGA_TESTS_SRC := $(notdir $(wildcard $(FWRISC_FPGA_TESTS_DIR)/*.cpp))
HELPER_SRC := ElfFileReader.cpp ElfSymtabReader.cpp
else # Rules
$(FWRISC_FPGA_TESTS_SRC:.cpp=.o) : vl_translate.d
libfwrisc_fpga_tests.o : $(FWRISC_FPGA_TESTS_SRC:.cpp=.o) $(HELPER_SRC:.cpp=.o)
$(Q)$(LD) -r -o $@ $(FWRISC_FPGA_TESTS_SRC:.cpp=.o) $(HELPER_SRC:.cpp=.o)
endif