blob: 4cb001289885ca64a2e98f299b64b574cb701f89 (
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 Sun Dec 7 18:36:25 2003
+++ Makefile.common Sun Dec 7 18:38:10 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${LOCALBASE}/g++ -I${LOCALBASE}/c++/3.3
+ # Which compiler?
+ # NB: use -Wall for compilation warnings with gcc
+ #
+ CC = g++ -Wall
+ LD = g++ -Wall
endif
|