criu/compel/test/Makefile
Radostin Stoyanov fbb21b4041 compel/test: Add main makefile
These changes enable running all compel tests with a single
command from the root path of the repository:

	# sudo make -C compel/test

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
2021-09-03 10:31:00 -07:00

17 lines
240 B
Makefile

all: fdspy infect rsys
fdspy:
$(Q) $(MAKE) -C fdspy
$(Q) $(MAKE) -C fdspy run
.PHONY: fdspy
infect:
$(Q) $(MAKE) -C infect
$(Q) $(MAKE) -C infect run
.PHONY: infect
rsys:
$(Q) $(MAKE) -C rsys
$(Q) $(MAKE) -C rsys run
.PHONY: rsys