You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
885 B
24 lines
885 B
# Makefile for the UCW Sorter (c) 2007 Martin Mares <mj@ucw.cz>
|
|
|
|
DIRS+=ucw/sorter
|
|
|
|
LIBUCW_MODS+=$(addprefix sorter/, config govern sbuck array)
|
|
LIBUCW_SORTER_INCLUDES=$(addprefix sorter/, array.h array-simple.h common.h s-fixint.h \
|
|
s-internal.h s-multiway.h s-radix.h s-twoway.h sorter.h)
|
|
LIBUCW_INCLUDES+=$(LIBUCW_SORTER_INCLUDES)
|
|
|
|
ifdef CONFIG_UCW_DEBUG_TOOLS
|
|
PROGS+=$(o)/ucw/sorter/sort-test
|
|
include $(s)/ucw/sorter/debug/Makefile
|
|
endif
|
|
|
|
TESTS+=$(o)/ucw/sorter/sort-test.test
|
|
|
|
$(o)/ucw/sorter/sort-test.test: $(o)/ucw/sorter/sort-test
|
|
$(o)/ucw/sorter/sort-test: $(o)/ucw/sorter/sort-test.o $(LIBUCW)
|
|
|
|
INSTALL_API_TARGETS+=install-ucw-sorter-api
|
|
install-ucw-sorter-api:
|
|
install -d -m 755 $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/sorter
|
|
install -m 644 $(addprefix run/include/ucw/,$(LIBUCW_SORTER_INCLUDES)) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/sorter/
|
|
.PHONY: install-ucw-sorter-api
|
|
|