blob: 2277615cfabd7adf2cb59d5639403b72bc60319d (
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
33
|
--- Makefile.common.orig Tue Jul 22 19:37:39 2003
+++ Makefile.common Tue Oct 14 15:04:38 2003
@@ -24,11 +24,15 @@
ifeq (${SYSTEM},SunOS)
OS = solaris
endif
+ifeq (${SYSTEM},FreeBSD)
+ OS = freebsd
+endif
#
# and the old way (e.g. if the above lines do not work!)
#
#OS = linux
#OS = solaris
+#OS = freebsd
# Do you want/need extended memory debugging?
@@ -59,6 +63,14 @@
#
CC = /opt/SUNWspro/bin/CC
LD = /opt/SUNWspro/bin/CC
+endif
+ifeq (${OS},freebsd)
+ OSFLAGS = -DFREEBSD -I/usr/include/g++
+ # Which compiler?
+ # NB: use -Wall for compilation warnings with gcc
+ #
+ CC = g++ -Wall
+ LD = g++ -Wall
endif
|