1*bc6f0a96S裕依ifeq ($(ARCH), x86_64) 2*bc6f0a96S裕依 CROSS_COMPILE=x86_64-linux-musl- 3*bc6f0a96S裕依else ifeq ($(ARCH), riscv64) 4*bc6f0a96S裕依 CROSS_COMPILE=riscv64-linux-musl- 5*bc6f0a96S裕依endif 6be63f3b2Shoumkh 7*bc6f0a96S裕依CC=$(CROSS_COMPILE)gcc 8be63f3b2Shoumkh 9*bc6f0a96S裕依.PHONY: all 10*bc6f0a96S裕依all: main.c 11*bc6f0a96S裕依 $(CC) -static -o test_fstat main.c 12be63f3b2Shoumkh 13*bc6f0a96S裕依.PHONY: install clean 14*bc6f0a96S裕依install: all 15*bc6f0a96S裕依 mv test_fstat $(DADK_CURRENT_BUILD_DIR)/test_fstat 16be63f3b2Shoumkh 17be63f3b2Shoumkhclean: 18*bc6f0a96S裕依 rm test_fstat *.o 19*bc6f0a96S裕依 20*bc6f0a96S裕依fmt: 21