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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
$NetBSD: patch-aa,v 1.4 2001/03/05 13:52:42 skrll Exp $
--- Makefile.orig Thu Feb 4 00:43:27 1999
+++ Makefile
@@ -64,9 +64,10 @@
# Compiler Settings #
# #
#####################
-CC = gcc
-CFLAGS = -g -funroll-loops -Wall -pipe -ansi
-LDFLAGS =
+# Inherit from build environment
+#CC = gcc
+#CFLAGS = -g -funroll-loops -Wall -pipe -ansi
+#LDFLAGS =
# The following flags are *very* usefull if you are getting unresolved
# references to functions in libraries that you *know* to exist.
@@ -114,8 +115,8 @@
# HAVE_LIBPNG => png.h and zlib.h
# HAVE_LIBZ => zlib.h
-ZLIBINC =
-IMAGEINCLUDES = $(ZLIBINC)
+ZLIBINC =
+IMAGEINCLUDES = -I${LOCALBASE}/include $(ZLIBINC)
# Image libraries
# No need to add -lXpm if you need to include it with LIBS below
@@ -166,14 +167,14 @@
# Add -DDEBUG to enable selective debug output (see the file DEBUGGING for more
# info).
#
-CPPFLAGS = -DDEBUG -D_GNU_SOURCE -D_BSD_SOURCE -D_POSIX_SOURCE -DHAVE_REGEX_H $(IMAGEDEFINES)
+CPPFLAGS = -DHAVE_REGEX_H $(IMAGEDEFINES)
# Various include directories
LIBINC=-I. -I../include -I../include/common -I../../include -I../../include/common
# Platform specific includes
ifeq ($(PLATFORM),Motif)
-PLATFORMINC=-I../../include/XmHTML -I/usr/X11R6/include
+PLATFORMINC=-I../../include/XmHTML -I${X11BASE}/include
else
ifeq ($(PLATFORM),gtk)
PLATFORMINC=-I../../include/gtk-xmhtml -I/usr/local/include
@@ -192,17 +193,17 @@
# Motif version (default)
ifeq ($(PLATFORM),Motif)
-LIBDIR = -L/usr/X11R6/lib
+LIBDIR = -L${X11BASE}/lib
# This is what is required under Linux (Motif 2.0.1).
# Your mileage may vary.
-LIBS = -lXm -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE
+LIBS = ${MOTIFLIB} -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE
else
# gtk version (only supported port for now)
ifeq($(PLATFORM),gtk)
-LIBDIR = -L/usr/local/lib
+LIBDIR = -L${X11BASE}/lib
LIBS = -lgdk -lgtk -lX11
# endif gtk
|