awips2/nativeLib/build.native/makefile.arch

12 lines
212 B
Text
Raw Normal View History

ARCHFLAGS =
ifndef ARCHFLAGS
ARCH ?= $(shell uname -i)
ifeq ($(ARCH),x86_64)
export CFLAGS := $(CFLAGS) -m64
else
export CFLAGS := $(CFLAGS) -m32
endif
else
export CFLAGS := $(CFLAGS) $(ARCHFLAGS)
endif