mirror of
https://github.com/dynup/kpatch
synced 2024-12-13 08:54:38 +00:00
ffc4122efb
Add a submodule containing object files for unittests. Signed-off-by: Artem Savkov <asavkov@redhat.com>
12 lines
206 B
Makefile
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
|