blob: 449b3ac3d859d8f5b0ad6a6d3fd5c2d1a2f87aeb (
plain)
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
|
--- Makefile.orig Mon Jun 15 21:46:49 1998
+++ Makefile Wed Jun 24 22:37:10 1998
@@ -1,5 +1,5 @@
-CHINESE=0
-TEDDIR=/usr/local/lib/Ted
+CHINESE=1
+TEDDIR=/usr/X11R6/lib/X11/ted
########## GCC/Linux ...... ############
CC=gcc
XINC=-I/usr/X11R6/include
@@ -30,20 +30,20 @@
#CC=cc
#XINC=-I/usr/openwin/include
#LDFLAGS= -L/usr/openwin/lib -lsocket
-CC=gcc
-XINC=-I/usr/X11R6.3/include
-LDFLAGS= -L/usr/X11R6.3/lib -lsocket
-SUNKBD=-DSUNKBD
+#CC=gcc
+#XINC=-I/usr/X11R6.3/include
+#LDFLAGS= -L/usr/X11R6.3/lib -lsocket
+#SUNKBD=-DSUNKBD
###########################
-CFLAGS = -O -DCHINESE=$(CHINESE) $(XINC) $(SUNKBD) -DTEDDIR=\"$(TEDDIR)\"
+CFLAGS += -DCHINESE=$(CHINESE) $(XINC) $(SUNKBD) -DTEDDIR=\"$(TEDDIR)\"
#CFLAGS = -g -DCHINESE=$(CHINESE) $(XINC) -DDEBUG $(SUNKBD) -DTEDDIR=\"$(TEDDIR)\"
#CFLAGS = -g -DCHINESE=$(CHINESE) $(XINC) $(SUNKBD) -DTEDDIR=\"$(TEDDIR)\"
OBJS = e.o x.o m.o f.o b.o edln.o xcp.o s.o u.o misc.o twin.o dir.o xkey.o \
- cwin.o filebrowse.o kwcomp.o
+ cwin.o filebrowse.o kwcomp.o cli_xcin.o
-all: ted ref ctags tedrc
+all: ted tedrc #ref ctags
ted: $(OBJS)
$(CC) $(OBJS) -o $@ $(LDFLAGS) -lX11
# $(CC) $(OBJS) -o $@ $(LDFLAGS) -lX11 -lefence
@@ -58,11 +58,17 @@
$(CC) $(CFLAGS) ctags.c -o $@
strip $@
install:
- cp ted ref ctags /usr/local/bin
+# cp ted ref ctags /usr/local/bin
+ install -c -s -o bin -g bin -m 0755 ted /usr/X11R6/bin
if [ ! -d $(TEDDIR) ]; then mkdir $(TEDDIR); fi
- cp tedrc tedrc.vi tedrc.grep ted.help tedrc.filevisit $(TEDDIR)
-cli_xcin.o:
- ln -s ../big5-pack/xcin/cli_xcin.o .
+# cp tedrc tedrc.vi tedrc.grep ted.help tedrc.filevisit $(TEDDIR)
+#cli_xcin.o:
+# ln -s ../big5-pack/xcin/cli_xcin.o .
+ install -c -o bin -g bin -m 0444 tedrc $(TEDDIR)
+ install -c -o bin -g bin -m 0444 tedrc.filevisit $(TEDDIR)
+ install -c -o bin -g bin -m 0444 tedrc.grep $(TEDDIR)
+ install -c -o bin -g bin -m 0444 tedrc.vi $(TEDDIR)
+ install -c -o bin -g bin -m 0444 ted.help $(TEDDIR)
clean:
rm -f $(OBJS) ted core *~ *_
clb5:
|