Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.2 15 lines 241 B view raw
1# The loops are all 64-bit code 2CFLAGS += -m64 3CFLAGS += -I$(CURDIR) 4 5TEST_PROGS := memcmp 6EXTRA_SOURCES := memcmp_64.S ../harness.c 7 8all: $(TEST_PROGS) 9 10$(TEST_PROGS): $(EXTRA_SOURCES) 11 12include ../../lib.mk 13 14clean: 15 rm -f $(TEST_PROGS) *.o