#
# ********************************************
# ****   Makefile for Z32 static library  ****
# **** (c) 2000-2020, Alessandro Pedretti ****
# ****  for Mingw32 - Pentium Pro target  ****
# ********************************************
#
#

CC         = gcc
CPU        = -march=pentiumpro
CFLAGS     = -O3 $(CPU) -malign-double -fomit-frame-pointer -funroll-loops -Wall
VER        =
DLL32      =
DLL64      =
LIBRARY    = z
TEST       = test32

O          = .o
EXTRAOBJ   =
RM         = del


include ../Makefile.in

