|
|
@ -39,6 +39,7 @@ WAV49 = -DWAV49
|
|
|
|
|
|
|
|
|
|
|
|
ifneq (${OSARCH},Darwin)
|
|
|
|
ifneq (${OSARCH},Darwin)
|
|
|
|
ifneq (${PROC},x86_64)
|
|
|
|
ifneq (${PROC},x86_64)
|
|
|
|
|
|
|
|
ifneq (${PROC},ultrasparc)
|
|
|
|
ifneq ($(shell uname -m),ppc)
|
|
|
|
ifneq ($(shell uname -m),ppc)
|
|
|
|
ifneq ($(shell uname -m),alpha)
|
|
|
|
ifneq ($(shell uname -m),alpha)
|
|
|
|
OPTIMIZE+=-march=$(PROC)
|
|
|
|
OPTIMIZE+=-march=$(PROC)
|
|
|
@ -46,6 +47,7 @@ endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
PG =
|
|
|
|
PG =
|
|
|
|
#PG = -g -pg
|
|
|
|
#PG = -g -pg
|
|
|
@ -203,7 +205,9 @@ ifeq (${OSARCH},Linux)
|
|
|
|
ifneq ($(shell uname -m),x86_64)
|
|
|
|
ifneq ($(shell uname -m),x86_64)
|
|
|
|
ifneq ($(shell uname -m),ppc)
|
|
|
|
ifneq ($(shell uname -m),ppc)
|
|
|
|
ifneq ($(shell uname -m),alpha)
|
|
|
|
ifneq ($(shell uname -m),alpha)
|
|
|
|
GSM_SOURCES+= $(SRC)/k6opt.s
|
|
|
|
ifneq ($(shell uname -m),sparc64)
|
|
|
|
|
|
|
|
GSM_SOURCES+= $(SRC)/k6opt.s
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
@ -252,11 +256,14 @@ GSM_OBJECTS = $(SRC)/add.o \
|
|
|
|
$(SRC)/gsm_option.o \
|
|
|
|
$(SRC)/gsm_option.o \
|
|
|
|
$(SRC)/short_term.o \
|
|
|
|
$(SRC)/short_term.o \
|
|
|
|
$(SRC)/table.o
|
|
|
|
$(SRC)/table.o
|
|
|
|
|
|
|
|
|
|
|
|
ifeq (${OSARCH},Linux)
|
|
|
|
ifeq (${OSARCH},Linux)
|
|
|
|
ifneq ($(shell uname -m), x86_64)
|
|
|
|
ifneq ($(shell uname -m), x86_64)
|
|
|
|
ifneq ($(shell uname -m), ppc)
|
|
|
|
ifneq ($(shell uname -m), ppc)
|
|
|
|
ifneq ($(shell uname -m), alpha)
|
|
|
|
ifneq ($(shell uname -m), alpha)
|
|
|
|
GSM_OBJECTS+= $(SRC)/k6opt.o
|
|
|
|
ifneq ($(shell uname -m), sparc64)
|
|
|
|
|
|
|
|
GSM_OBJECTS+= $(SRC)/k6opt.o
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|