1#ident "@(#)Defaults.freebsd 1.7 21/05/27 " 2########################################################################### 3# 4# global definitions for FreeBSD Systems 5# 6########################################################################### 7# 8# Compiler stuff 9# 10########################################################################### 11DEFCCOM= cc 12#DEFCCOM= gcc 13 14########################################################################### 15# 16# Link mode for libraries that are part of the makefile system: 17# If DEFLINKMODE is set to "static", no dynamic linking will be used 18# If DEFLINKMODE is set to "dynamic", dynamic linking will be used 19# 20########################################################################### 21DEFLINKMODE= static 22 23########################################################################### 24# 25# If the next line is commented out, compilation is done with max warn level 26# If the next line is uncommented, compilation is done with minimal warnings 27# 28########################################################################### 29#CWARNOPTS= 30 31DEFINCDIRS= $(SRCROOT)/include 32DEFOSINCDIRS= /usr/local/include 33LDPATH= -L/opt/schily/lib -L/usr/local/lib 34#RUNPATH= -R$(INS_BASE)/lib -R/opt/schily/lib -R$(OLIBSDIR) Will probably not work 35RUNPATH= -R$(INS_BASE)/lib 36 37########################################################################### 38# 39# Installation config stuff 40# 41########################################################################### 42#INS_BASE= /opt/schily 43#INS_KBASE= / 44#INS_RBASE= / 45INS_BASE= /tmp/schily 46INS_KBASE= /tmp/schily/root 47INS_RBASE= /tmp/schily/root 48# 49DEFUMASK= 002 50# 51DEFINSMODEF= 444 52DEFINSMODEX= 755 53DEFINSUSR= root 54DEFINSGRP= bin 55