
It is a rarely exercised case, so we want to have a test to ensure it works as required. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
17 lines
218 B
Makefile
17 lines
218 B
Makefile
CFLAGS += -I$(CURDIR)
|
|
|
|
PROGS := load_unaligned_zeropad
|
|
|
|
all: $(PROGS)
|
|
|
|
$(PROGS): ../harness.c
|
|
|
|
run_tests: all
|
|
@-for PROG in $(PROGS); do \
|
|
./$$PROG; \
|
|
done;
|
|
|
|
clean:
|
|
rm -f $(PROGS) *.o
|
|
|
|
.PHONY: all run_tests clean
|