mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
4ac273afbe
Submitted by: jmacd@uclink.berkeley.edu (Josh MacDonald)
28 lines
345 B
Plaintext
28 lines
345 B
Plaintext
#
|
|
# This is the header file for constructing make files for FreeBSD.
|
|
#
|
|
|
|
# Default flags to use when invoking the C compiler.
|
|
|
|
CFLAGS = -O2
|
|
CC = gcc
|
|
|
|
# Assembly language object files.
|
|
|
|
Aruntime = x86.o
|
|
|
|
# Profiled library
|
|
|
|
Plib = libsc_p.a
|
|
|
|
# Installation tools
|
|
|
|
RANLIB = ranlib
|
|
|
|
# X library
|
|
|
|
XLIB = -lX11
|
|
XLIBCFLAGS =
|
|
|
|
# End of FREEBSD header.
|