xref: /DragonOS/user/apps/test_bind/Makefile (revision bc6f0a967c8cb1e9379ced184b25a7722fbda2a4)
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
6821bb9a2SXshine
7*bc6f0a96S裕依CC=$(CROSS_COMPILE)gcc
8821bb9a2SXshine
9*bc6f0a96S裕依.PHONY: all
10*bc6f0a96S裕依all: main.c
11*bc6f0a96S裕依	$(CC) -static -o test_bind main.c
12821bb9a2SXshine
13*bc6f0a96S裕依.PHONY: install clean
14*bc6f0a96S裕依install: all
15*bc6f0a96S裕依	mv test_bind $(DADK_CURRENT_BUILD_DIR)/test_bind
16821bb9a2SXshine
17821bb9a2SXshineclean:
18*bc6f0a96S裕依	rm test_bind *.o
19*bc6f0a96S裕依
20*bc6f0a96S裕依fmt:
21