mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
98809741d2
not found a quick way to do that with a environment variable in string constant. So this ports works in the moment only with XFree3.x (X11R6) and not with XFree2.x (X11R5 <-> X386).
33 lines
423 B
Plaintext
33 lines
423 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
|
|
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.
|