e415c3fe70
This makes it clearer which ones actually are real platforms (chosen automatically or explicitly via "make ARCH=foo") and which ones just are shared helpers.
13 lines
200 B
Makefile
13 lines
200 B
Makefile
include $(SRC_PATH)build/arch.mk
|
|
SHAREDLIBSUFFIX = so
|
|
CFLAGS += -fPIC
|
|
LDFLAGS += -lpthread
|
|
ifeq ($(ASM_ARCH), x86)
|
|
ifeq ($(ENABLE64BIT), Yes)
|
|
ASMFLAGS += -f elf64
|
|
else
|
|
ASMFLAGS += -f elf
|
|
endif
|
|
endif
|
|
|