kpatch/Makefile
Seth Jennings 6ab1273021 major rewrite to per-section function/data model
Signed-off-by: Seth Jennings <sjenning@redhat.com>
2014-02-11 10:25:48 -06:00

12 lines
164 B
Makefile

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