
## OS        : FreeBSD
## ARCH      : x86
## Compiler  : GNU
## Maintainer: <unknown>

CC      = gcc
FC      = g77
LD      = ld
RM      = rm -f
AR      = ar rc
RNLIB   = ranlib
STRIP   = strip
INSTALL = install

CFLAGS  = -O2 -Wall -pedantic -m486 -DTHREADSAFE $(EXTRA_FLAGS)
FFLAGS  = -O2 -Wall -pedantic -m486 -DTHREADSAFE $(EXTRA_FLAGS)
LDFLAGS = -static
# There are some problems with old libc_r's. If you can't get it working
# Make sure you've got the latest
LDLIBS  = -lc_r -lm $(EXTRA_LIBS)

# Cosm Defines
CDEFS = -DCPU_32BIT -DCPU_WORD_SIZES=442 \
	-DCPU_TYPE=CPU_X86 -DOS_TYPE=OS_FREEBSD

