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 636fd0130Shoumkh 7*bc6f0a96S裕依CC=$(CROSS_COMPILE)gcc 836fd0130Shoumkh 9*bc6f0a96S裕依.PHONY: all 10*bc6f0a96S裕依all: main.c 11*bc6f0a96S裕依 $(CC) -static -o test_gettimeofday main.c 1236fd0130Shoumkh 13*bc6f0a96S裕依.PHONY: install clean 14*bc6f0a96S裕依install: all 15*bc6f0a96S裕依 mv test_gettimeofday $(DADK_CURRENT_BUILD_DIR)/test_gettimeofday 1636fd0130Shoumkh 1736fd0130Shoumkhclean: 18*bc6f0a96S裕依 rm test_gettimeofday *.o 19*bc6f0a96S裕依 20*bc6f0a96S裕依fmt: 21