# Makefile to create austal and taldia
#
# system dependent definitions for Linux Intel C (19.0-IA32)
#
# IMPORTANT NOTE:
# The source code of AUSTAL is designed for 32-bit and 
# must be compiled as 32-bit program!
#
# 2021-06-23
#
#########################################################################

BIN   =
OBJ   = .o
EXE   =
CURP  = ./
SRC   = ../source/
SRCRM = $(SRC)
CC    = icc
COPT  = -DMSGALLOC -fpack-struct -Wmissing-prototypes -funsigned-char \
        -D_FILE_OFFSET_BITS=64 \
        -no-multibyte-chars -DMAKE_LABEL=\"LI-x\" -O3 -fp-model source
LIBS  = libz.a
LOPT  = -static -L/usr/lib
SYSL  = -lm
OUTO  = -o #
OUTE  = -o #
REMOVE = rm -f
#
vpath %.c $(SRC)
vpath %.h $(SRC)
include $(SRC)rules.make
#########################################################################

