kpatch/Makefile
Seth Jennings 069a5dbad7 don't build kpatch-files from primary Makefile
Signed-off-by: Seth Jennings <sjenning@redhat.com>
2014-02-11 10:28:00 -06:00

12 lines
151 B
Makefile

SUBDIRS = kpatch-kmod tools
test: test.c
$(CC) -g -o $@ $^ -lelf
.PHONY: clean
clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@; \
done