summaryrefslogtreecommitdiff
path: root/zwgc/Makefile.in
blob: 6addf6ac345d010918e09276f536b376e5195f50 (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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
SHELL = /bin/sh

prefix=@prefix@
exec_prefix=@exec_prefix@
datadir=@datadir@
sysconfdir=@sysconfdir@
sbindir=@sbindir@
lsbindir=@lsbindir@
datarootdir=@datarootdir@

includedir=${prefix}/include
mandir=@mandir@
libdir=${exec_prefix}/lib
bindir=${exec_prefix}/bin
top_builddir=..

srcdir=@srcdir@
top_srcdir=@top_srcdir@
BUILDTOP=..
VPATH=@srcdir@
LIBTOOL=@LIBTOOL@
CC=@CC@
YACC=@YACC@
INSTALL=@INSTALL@
INSTANTIATE=${srcdir}/instantiate

LIBZEPHYR=${BUILDTOP}/lib/libzephyr.la
CPPFLAGS=@CPPFLAGS@
CFLAGS=@CFLAGS@
ALL_CFLAGS=${CFLAGS} -DDATADIR=\"${datadir}\" -I${top_srcdir}/h \
	-I${BUILDTOP}/h -I${srcdir} -I. @X_CFLAGS@ ${CPPFLAGS}
YFLAGS=-d
LDFLAGS=@X_LIBS@ @LDFLAGS@
LIBS=${LIBZEPHYR} @LIBS@ -lcom_err @ZWGC_LIBX11@ @X_EXTRA_LIBS@ \
     @TLIB@ @REGEX_LIBS@ @ARES_LIBS@

OBJS=	port_dictionary.o pointer_dictionary.o unsigned_long_dictionary.o \
	string_dictionary.o int_dictionary.o string_dictionary_aux.o \
	parser.o lexer.o node.o exec.o buffer.o main.o zephyr.o X_driver.o \
	substitute.o port.o xshow.o mux.o eval.o subscriptions.o notice.o \
	xcut.o regexp.o character_class.o text_operations.o file.o error.o \
	variables.o formatter.o X_fonts.o X_gram.o tty_filter.o \
	standard_ports.o xselect.o xmark.o xrevstack.o xerror.o \
	new_string.o new_memory.o plus.o

all: zwgc

zwgc: ${OBJS} ${LIBZEPHYR}
	${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}

port_dictionary.c port_dictionary.h: dictionary.c dictionary.h
	${INSTANTIATE} ${srcdir} dictionary port port.h

pointer_dictionary.c pointer_dictionary.h: dictionary.c dictionary.h
	${INSTANTIATE} ${srcdir} dictionary pointer pointer.h

unsigned_long_dictionary.c unsigned_long_dictionary.h: dictionary.c \
							dictionary.h
	${INSTANTIATE} ${srcdir} dictionary unsigned_long unsigned_long.h

string_dictionary.c string_dictionary.h: dictionary.c dictionary.h
	${INSTANTIATE} ${srcdir} dictionary string new_string.h

int_dictionary.c int_dictionary.h: dictionary.c dictionary.h
	${INSTANTIATE} ${srcdir} dictionary int

char_stack.h: stack.h
	${INSTANTIATE} ${srcdir} stack char

string_stack.h: stack.h
	${INSTANTIATE} ${srcdir} stack string

xmode_stack.h: stack.h
	${INSTANTIATE} ${srcdir} stack xmode

lexer.o: y.tab.h

parser.o: y.tab.c y.tab.h
	${CC} -c ${ALL_CFLAGS} -o $@ y.tab.c

y.tab.c y.tab.h: ${srcdir}/parser.y
	${YACC} ${YFLAGS} ${srcdir}/parser.y

.c.o:
	${CC} -c ${ALL_CFLAGS} $<

check:

install: zwgc
	${LIBTOOL} --mode=install ${INSTALL} -m 755 zwgc ${DESTDIR}${bindir}
	${INSTALL} -m 644 ${srcdir}/zwgc.1 ${DESTDIR}${mandir}/man1
	${INSTALL} -m 644 ${srcdir}/zwgc.desc ${DESTDIR}${datadir}/zephyr
	${INSTALL} -m 644 ${srcdir}/zwgc_resources ${DESTDIR}${datadir}/zephyr

clean:
	${LIBTOOL} --mode=clean rm -f zwgc
	rm -f ${OBJS} port_dictionary.[ch] pointer_dictionary.[ch]
	rm -f unsigned_long_dictionary.[ch] string_dictionary.[ch]
	rm -f int_dictionary.[ch] char_stack.h string_stack.h xmode_stack.h
	rm -f y.tab.[ch]

${OBJS}: ${top_srcdir}/h/sysdep.h ${BUILDTOP}/h/config.h
zephyr.o: ${BUILDTOP}/h/zephyr/zephyr.h ${BUILDTOP}/h/zephyr/zephyr_err.h

port_dictionary.o: port.h string_stack.h new_string.h new_memory.h
pointer_dictionary.o: pointer.h new_string.h new_memory.h
unsigned_long_dictionary.o: new_string.h new_memory.h
string_dictionary.o: new_string.h new_memory.h
int_dictionary.o: new_string.h new_memory.h
X_driver.o: X_driver.h new_memory.h formatter.h mux.h variables.h error.h
X_driver.o: X_gram.h xselect.h unsigned_long_dictionary.h
X_fonts.o: X_fonts.h new_memory.h new_string.h error.h pointer_dictionary.h
X_fonts.o: zwgc.h
X_gram.o: X_gram.h xmark.h zwgc.h X_driver.h X_fonts.h error.h new_string.h
X_gram.o: xrevstack.h xerror.h xselect.h
browser.o: zwgc.h
buffer.o: new_memory.h buffer.h
character_class.o: character_class.h
eval.o: new_memory.h node.h eval.h substitute.h port.h buffer.h regexp.h
eval.o: text_operations.h zwgc.h variables.h
exec.o: new_memory.h exec.h eval.h node.h buffer.h port.h variables.h notice.h
file.o: new_memory.h new_string.h error.h
formatter.o: new_memory.h char_stack.h string_dictionary.h formatter.h
formatter.o: text_operations.h
lexer.o: new_memory.h new_string.h int_dictionary.h lexer.h parser.h
main.o: new_memory.h zwgc.h parser.h node.h exec.h zephyr.h notice.h
main.o: subscriptions.h file.h mux.h port.h variables.h main.h
mux.o: mux.h error.h zwgc.h pointer.h
new_memory.o: new_memory.h int_dictionary.h
new_string.o: new_memory.h
node.o: new_memory.h node.h
notice.o: new_memory.h error.h variables.h notice.h
port.o: new_string.h port_dictionary.h port.h notice.h variables.h
regexp.o: regexp.h
standard_ports.o: new_memory.h port.h variables.h error.h main.h
string_dictionary_aux.o: new_memory.h string_dictionary.h
subscriptions.o: new_memory.h new_string.h int_dictionary.h zwgc.h
subscriptions.o: subscriptions.h error.h file.h main.h
substitute.o: new_memory.h lexer.h substitute.h
text_operations.o: new_memory.h text_operations.h char_stack.h
tty_filter.o: new_memory.h new_string.h string_dictionary_aux.h formatter.h
tty_filter.o: zwgc.h error.h
variables.o: new_memory.h notice.h string_dictionary_aux.h variables.h
xcut.o: new_memory.h new_string.h X_gram.h zwgc.h xselect.h xmark.h error.h
xcut.o: xrevstack.h
xerror.o: mux.h
xmark.o: X_gram.h X_fonts.h xmark.h new_string.h
xrevstack.o: X_gram.h zwgc.h
xselect.o: new_string.h xselect.h
xshow.o: pointer_dictionary.h new_memory.h formatter.h variables.h zwgc.h
xshow.o: X_fonts.h X_gram.h xmode_stack.h
zephyr.o: new_string.h zephyr.h error.h mux.h subscriptions.h variables.h
zephyr.o: pointer.h X_driver.h

.PHONY: all check install clean