blob: cc72d71f0e55082e56fc698def75053f21a6c0dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#
# 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
SAruntime = x86.so
# Profiled library
Plib = libsc_p.a
# Installation tools
RANLIB = ranlib
AS = as
CPP = cpp
# X library
XLIB = -L/usr/X11R6/lib -lX11
XLIBCFLAGS =
PICFLAGS = -fpic -DPIC
# End of FREEBSD header.
|