3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-13 02:35:54 +00:00

28 lines
871 B
Makefile
Raw Normal View History

2021-05-27 00:09:36 +05:00
# SPDX-License-Identifier: GPL-2.0
include ../lib.mk
uname_M := $(shell uname -m 2>/dev/null || echo not)
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
TEST_GEN_PROGS := $(OUTPUT)/vdso_test_gettimeofday $(OUTPUT)/vdso_test_getcpu
2021-09-23 21:59:15 +05:00
ifeq ($(ARCH),x86)
2021-05-27 00:09:36 +05:00
TEST_GEN_PROGS += $(OUTPUT)/vdso_standalone_test_x86
endif
2021-09-23 21:59:15 +05:00
ifndef CROSS_COMPILE
2021-05-27 00:09:36 +05:00
CFLAGS := -std=gnu99
CFLAGS_vdso_standalone_test_x86 := -nostdlib -fno-asynchronous-unwind-tables -fno-stack-protector
ifeq ($(CONFIG_X86_32),y)
LDLIBS += -lgcc_s
endif
all: $(TEST_GEN_PROGS)
$(OUTPUT)/vdso_test_gettimeofday: parse_vdso.c vdso_test_gettimeofday.c
$(OUTPUT)/vdso_test_getcpu: parse_vdso.c vdso_test_getcpu.c
$(OUTPUT)/vdso_standalone_test_x86: vdso_standalone_test_x86.c parse_vdso.c
$(CC) $(CFLAGS) $(CFLAGS_vdso_standalone_test_x86) \
vdso_standalone_test_x86.c parse_vdso.c \
-o $@
2021-09-23 21:59:15 +05:00
endif