-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.cygming
103 lines (82 loc) · 2.92 KB
/
Makefile.cygming
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#
# Makefile for antiword (Cygwin standalone version for Windows)
#
CC = gcc
LD = gcc
INSTALL = cp -pf
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)
# must be equal to DEBUG or NDEBUG
DB = NDEBUG
# Optimization: -O<n> or debugging: -g
OPT = -O2
#LDLIBS = -lX11
LDLIBS =
# NOTE: As of 2004/11/06, cygwin locale is broken, cf. http://www.cygwin.com/ml/cygwin/2004-09/msg01705.html
# The following fix works for Makefile.cygwin, but not here as setlocale() hangs on my system :(
#CFLAGS = -Wall -pedantic $(OPT) -mno-cygwin -D__CYGMING__ -D$(DB) -DX_LOCALE -I/usr/X11R6/include
CFLAGS = -Wall -pedantic $(OPT) -mno-cygwin -D__CYGMING__ -D$(DB)
#LDFLAGS = -mno-cygwin -L/usr/X11R6/lib
LDFLAGS = -mno-cygwin
OBJS =\
main_u.o asc85enc.o blocklist.o chartrans.o datalist.o depot.o\
dib2eps.o doclist.o fail.o finddata.o findtext.o fmt_text.o fontlist.o\
fonts.o fonts_u.o hdrftrlist.o imgexam.o imgtrans.o jpeg2eps.o\
listlist.o misc.o notes.o options.o out2window.o output.o pdf.o\
pictlist.o png2eps.o postscript.o prop0.o prop2.o prop6.o prop8.o\
properties.o propmod.o rowlist.o sectlist.o stylelist.o stylesheet.o\
summary.o tabstop.o text.o unix.o utf8.o word2text.o worddos.o\
wordlib.o wordmac.o wordole.o wordwin.o xmalloc.o xml.o
PROGS =\
antiword.exe
#### antiword\
#### kantiword
LOCAL_INSTALL_DIR = $(HOME)
LOCAL_RESOURCES_DIR = $(HOME)/antiword
GLOBAL_INSTALL_DIR = c:/antiword
GLOBAL_RESOURCES_DIR = c:/antiword
all: $(PROGS)
install: all
mkdir -p $(LOCAL_INSTALL_DIR)
cp -pf $(PROGS) $(LOCAL_INSTALL_DIR)
mkdir -p $(LOCAL_RESOURCES_DIR)
cp -pf Resources/* $(LOCAL_RESOURCES_DIR)
# NOTE: you might have to be root to do this
global_install: all
# @[ `id -u` -eq 0 ] || (echo "You must be root to do this" && false)
mkdir -p $(DESTDIR)$(GLOBAL_INSTALL_DIR)
$(INSTALL_PROGRAM) $(PROGS) $(DESTDIR)$(GLOBAL_INSTALL_DIR)
cd $(DESTDIR)$(GLOBAL_INSTALL_DIR); chmod 755 $(PROGS)
mkdir -p $(DESTDIR)$(GLOBAL_RESOURCES_DIR)
$(INSTALL_DATA) Resources/*.txt $(DESTDIR)$(GLOBAL_RESOURCES_DIR)
$(INSTALL_DATA) Resources/fontnames $(DESTDIR)$(GLOBAL_RESOURCES_DIR)
cd $(DESTDIR)$(GLOBAL_RESOURCES_DIR); chmod 644 *.txt fontnames
# NOTE: you might have to be root to do this
global_uninstall:
# @[ `id -u` -eq 0 ] || (echo "You must be root to do this" && false)
cd $(DESTDIR)$(GLOBAL_INSTALL_DIR); rm -f $(PROGS)
-rmdir $(DESTDIR)$(GLOBAL_INSTALL_DIR)
cd $(DESTDIR)$(GLOBAL_RESOURCES_DIR); rm -f *.txt fontnames
-rmdir $(DESTDIR)$(GLOBAL_RESOURCES_DIR)
clean:
rm -f $(OBJS)
rm -f $(PROGS)
antiword.exe: $(OBJS)
@rm -f $@
$(LD) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@
@chmod 750 $@
kantiword: Unix-only/KDE3-only/kantiword.sh
@rm -f $@
echo "#!/bin/bash" > $@
cat $? >> $@
@chmod 750 $@
.c.o:
$(CC) $(CFLAGS) -c $<
main_u.o: version.h
postscript.o: version.h
pdf.o: version.h
fonts_u.o: fontinfo.h
fontinfo.h: Unix-only/fontinfo.h
cp -rp $? $@
Unix-only/fontinfo.h: Unix-only/fontinfo.pl
Unix-only/fontinfo.pl > Unix-only/fontinfo.h