blob: 1648b90ddd98c241eb98c5b145f4b425e20d8c63 (
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
|
--- Makefile.orig Sun Feb 6 00:26:12 2000
+++ Makefile Tue Jun 13 16:56:02 2000
@@ -1,21 +1,21 @@
# You will need to specify the absolute path if gnome-config is not in
# your path or if the one in your path is not the correct one
-GNOME_CONFIG = gnome-config
+GNOME_CONFIG = ${X11BASE}/bin/gnome-config
# This should be set to where aspell was installed the default is
# /usr/local
-ASPELL_PREFIX = /usr/local
+ASPELL_PREFIX = ${PREFIX}
-CXX = g++
-CXXFLAGS = -O2 -g
+CXX ?= g++
+CXXFLAGS ?= -O2 -g
# You should not need to modify anything below this comment
-VERSION = .29
+VERSION = .30
INCLUDES = -I$(ASPELL_PREFIX)/include `$(GNOME_CONFIG) --cflags gnomeui` \
- -D VERSION=\"$(VERSION)\"
+ -DVERSION=\"$(VERSION)\"
LIBS = -L$(ASPELL_PREFIX)/lib -laspell `$(GNOME_CONFIG) --libs gnomeui`
gaspell: gaspell.o DICTClient.o
|