#
# ********************************************
# ****       Makefile for LocaleLib       ****
# **** (c) 2000-2020, Alessandro Pedretti ****
# ****        Linux x86-32 version        ****
# ********************************************
#
#

CC         = gcc
CPU        = -march=pentiumpro
CFLAGS     = -O3 $(CPU) -malign-double -fomit-frame-pointer -funroll-loops
VER        =
DLL32      =
DLL64      = 
LIBRARY    = liblocale$(VER).a
SHARED     = liblocale$(VER).so

O          = .o
EXTRAOBJ   =
RM         = rm -f


include ../Makefile.in

