#
# ********************************************
# ****       Makefile for LocaleLib       ****
# **** (c) 2000-2020, Alessandro Pedretti ****
# ****    for Linux ARM, native target    ****
# ********************************************
#
#

CC         = gcc
CPU        = -mcpu=native
CFLAGS     = -O3 -fPIC $(CPU)
VER        =
DLL32      =
DLL64      = 
LIBRARY    = liblocale$(VER).a
SHARED     = liblocale$(VER).so

O          = .o
EXTRAOBJ   =
RM         = rm -f


include ../Makefile.in

