blob: 76c9f8413f51ceb24a3894ce215cda85c7fedcd9 (
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
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
|
--- estic/make/freebsd-x.mak.orig 1997-01-31 02:57:24 UTC
+++ estic/make/freebsd-x.mak
@@ -27,12 +27,12 @@ AS = gas
AR = ar
LD = ld
ZIP = zip
-CC = g++
+CC?= g++
LIB = ../spunk/spunk.a
INCDIR = ../spunk
-CFLAGS = -DFREEBSD -g -Wall -I$(INCDIR) -x c++ -L /usr/X11R6/lib -fno-implicit-templates -DEXPLICIT_TEMPLATES
+CFLAGS += -DFREEBSD -g -Wall -I$(INCDIR) -x c++ -L $(LOCALBASE)/lib -fno-implicit-templates -DEXPLICIT_TEMPLATES
# ------------------------------------------------------------------------------
@@ -71,10 +71,10 @@ OBJS = callwin.o \
icintcon.o \
iclog.o \
icmsgwin.o \
- icprefix.o \
icshort.o \
icver.o \
- istecmsg.o
+ istecmsg.o \
+ ../areacode/areacode.o
# ------------------------------------------------------------------------------
#
@@ -82,7 +82,7 @@ OBJS = callwin.o \
all: xestic
xestic: $(LIB) $(OBJS)
- $(CC) -o xestic $(OBJS) $(LIB) -ltermcap -lg++ -lX11
+ $(CC) -L $(LOCALBASE)/lib -o xestic $(OBJS) $(LIB) -lncurses -lX11
# ------------------------------------------------------------------------------
@@ -90,7 +90,7 @@ xestic: $(LIB) $(OBJS)
depend dep:
@echo "Creating dependency information"
- $(CC) -I$(INCDIR) -DFREEBSD -MM *.cc > .depend
+ $(CC) $(CFLAGS) -MM *.cc > .depend
# ------------------------------------------------------------------------------
# Create a ZIP file
@@ -114,9 +114,10 @@ bin-dist: estic icload strip
clean:
-rm -f *.bak *~
+ -rm -f *.o
+ -rm -f xestic
zap: clean
- -rm -f *.o
-rm -f .depend
|