kpatch/test/unit/Makefile
Artem Savkov ffc4122efb Add kpatch-unit-objs submodule
Add a submodule containing object files for unittests.

Signed-off-by: Artem Savkov <asavkov@redhat.com>
2018-04-26 18:49:29 +02:00

12 lines
206 B
Makefile

ARCH = $(shell uname -m)
OBJDIR ?= objs/$(ARCH)
.PHONY: all clean
all: Makefile.include
git submodule update --init --rebase
$(MAKE) -C $(OBJDIR)
clean: Makefile.include
$(MAKE) -C $(OBJDIR) clean