1994-12-30 00:35:47 +01:00
|
|
|
#
|
|
|
|
# This is the header file for constructing make files for FreeBSD.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Default flags to use when invoking the C compiler.
|
|
|
|
|
2000-03-01 10:57:06 +01:00
|
|
|
CFLAGS ?= -O2
|
|
|
|
CC ?= gcc
|
1994-12-30 00:35:47 +01:00
|
|
|
|
|
|
|
# Assembly language object files.
|
|
|
|
|
|
|
|
Aruntime = x86.o
|
1994-12-31 04:48:36 +01:00
|
|
|
SAruntime = x86.so
|
1994-12-30 00:35:47 +01:00
|
|
|
|
|
|
|
# Profiled library
|
|
|
|
|
|
|
|
Plib = libsc_p.a
|
|
|
|
|
|
|
|
# Installation tools
|
|
|
|
|
|
|
|
RANLIB = ranlib
|
1994-12-31 04:48:36 +01:00
|
|
|
AS = as
|
|
|
|
CPP = cpp
|
1994-12-30 00:35:47 +01:00
|
|
|
|
|
|
|
# X library
|
|
|
|
|
2000-03-01 10:57:06 +01:00
|
|
|
XLIB = -L${X11BASE}/lib -lX11
|
1994-12-30 00:35:47 +01:00
|
|
|
XLIBCFLAGS =
|
1994-12-31 04:48:36 +01:00
|
|
|
PICFLAGS = -fpic -DPIC
|
|
|
|
|
1994-12-30 00:35:47 +01:00
|
|
|
|
|
|
|
# End of FREEBSD header.
|