1 | # $Id$ |
---|
2 | |
---|
3 | srcdir = @srcdir@ |
---|
4 | VPATH = @srcdir@ |
---|
5 | prefix = @prefix@ |
---|
6 | exec_prefix = @exec_prefix@ |
---|
7 | datarootdir = @datarootdir@ |
---|
8 | datadir = @datadir@/barnowl |
---|
9 | bindir = @bindir@ |
---|
10 | mandir = @mandir@ |
---|
11 | |
---|
12 | CC=@CC@ |
---|
13 | LIBS=@LIBS@ -L./libfaim -lfaim |
---|
14 | CFLAGS=@CFLAGS@ -I./libfaim -DDATADIR=\"${datadir}\" |
---|
15 | LDFLAGS=@LDFLAGS@ |
---|
16 | XSUBPPDIR=@XSUBPPDIR@ |
---|
17 | XSUBPPFLAGS=@XSUBPPFLAGS@ |
---|
18 | INSTALL=@INSTALL@ |
---|
19 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
20 | INSTALL_DATA=@INSTALL_DATA@ |
---|
21 | ATHSTATIC=@ATHSTATIC@ |
---|
22 | |
---|
23 | BASE_SRCS=list.c message.c mainwin.c popwin.c zephyr.c messagelist.c \ |
---|
24 | commands.c global.c text.c fmtext.c editwin.c util.c logging.c \ |
---|
25 | perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \ |
---|
26 | regex.c history.c view.c dict.c variable.c filterelement.c pair.c \ |
---|
27 | keypress.c keymap.c keybinding.c cmd.c context.c zcrypt.c \ |
---|
28 | aim.c buddy.c buddylist.c style.c errqueue.c \ |
---|
29 | zbuddylist.c popexec.c obarray.c select.c wcwidth.c \ |
---|
30 | glib_compat.c |
---|
31 | OWL_SRC = owl.c |
---|
32 | TESTER_SRC = tester.c |
---|
33 | |
---|
34 | EXE = barnowl |
---|
35 | PERL_MODULES = Jabber IRC WordWrap |
---|
36 | MODULE_DIRS = $(PERL_MODULES:%=perl/modules/%) |
---|
37 | |
---|
38 | BASE_OBJS = $(BASE_SRCS:.c=.o) |
---|
39 | |
---|
40 | GEN_C = varstubs.c perlglue.c perlwrap.c |
---|
41 | GEN_H = owl_prototypes.h |
---|
42 | GEN_O = $(GEN_C:.c=.o) |
---|
43 | |
---|
44 | OBJS = $(BASE_OBJS) $(GEN_O) |
---|
45 | |
---|
46 | AUTOGEN=$(GEN_C) $(GEN_H) |
---|
47 | #AUTOGEN=$(GEN_C) |
---|
48 | |
---|
49 | HEADERS=$(GEN_H) owl.h config.h test.h |
---|
50 | |
---|
51 | all: $(EXE) $(MODULE_DIRS) |
---|
52 | |
---|
53 | $(EXE): $(AUTOGEN) $(OBJS) owl.o libfaim |
---|
54 | $(ATHSTATIC) $(CC) -o $(EXE) owl.o $(OBJS) $(LDFLAGS) $(LIBS) |
---|
55 | |
---|
56 | tester: $(AUTOGEN) $(OBJS) tester.o libfaim |
---|
57 | $(ATHSTATIC) $(CC) -o tester tester.o $(OBJS) $(LDFLAGS) $(LIBS) |
---|
58 | |
---|
59 | %.o: %.c $(HEADERS) |
---|
60 | $(CC) -c $(CFLAGS) $< -o $@ |
---|
61 | |
---|
62 | # zcrypt is old crufty DES code I don't want to touch |
---|
63 | # Disable all warnings when compiling it |
---|
64 | zcrypt.o: zcrypt.c $(HEADERS) |
---|
65 | $(CC) -c $(CFLAGS) $< -w -o $@ |
---|
66 | |
---|
67 | test: tester |
---|
68 | ./tester reg |
---|
69 | |
---|
70 | clean: libfaimclean modules_clean |
---|
71 | $(RM) $(EXE) tester *.o $(AUTOGEN) owl_prototypes.h.new |
---|
72 | |
---|
73 | distclean: clean libfaimdistclean |
---|
74 | $(RM) config.cache config.log config.status Makefile config.h TAGS *~ core |
---|
75 | |
---|
76 | .PHONY: $(MODULE_DIRS) |
---|
77 | |
---|
78 | modules: $(MODULE_DIRS) |
---|
79 | modules_clean: |
---|
80 | for i in $(MODULE_DIRS); do \ |
---|
81 | (cd $$i && (test ! -f Makefile || make clean)) \ |
---|
82 | done |
---|
83 | |
---|
84 | $(MODULE_DIRS): %: %/Makefile |
---|
85 | ( cd $@ && make $(notdir $@).par ) |
---|
86 | |
---|
87 | $(MODULE_DIRS:=/Makefile): %/Makefile: %/Makefile.PL |
---|
88 | ( cd $(dir $@) && perl -I../../lib Makefile.PL ) |
---|
89 | |
---|
90 | proto: owl_prototypes.h |
---|
91 | |
---|
92 | perlglue.c: perlglue.xs Makefile |
---|
93 | perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs > perlglue.c |
---|
94 | |
---|
95 | varstubs.c: variable.c stubgen.pl |
---|
96 | perl stubgen.pl > varstubs.c |
---|
97 | |
---|
98 | perlwrap.c: perlwrap.pm encapsulate.pl |
---|
99 | perl encapsulate.pl perlwrap.pm owl_perlwrap_codebuff > perlwrap.c |
---|
100 | |
---|
101 | # Only move owl_prototypes.h into place if the new one is different |
---|
102 | owl_prototypes.h: codelist.pl varstubs.c $(BASE_SRCS) |
---|
103 | perl codelist.pl > owl_prototypes.h.new |
---|
104 | @cmp -s owl_prototypes.h.new $@ || { \ |
---|
105 | test -f $@ && echo 'Interfaces changed!'; \ |
---|
106 | echo mv -f owl_prototypes.h.new $@; \ |
---|
107 | mv -f owl_prototypes.h.new $@; } |
---|
108 | #owl_prototypes.h: |
---|
109 | |
---|
110 | .PHONY: tags clean distclean proto test check-syntax |
---|
111 | |
---|
112 | tags: TAGS |
---|
113 | |
---|
114 | TAGS: $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H) |
---|
115 | etags $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H) |
---|
116 | |
---|
117 | $(BASE_OBJS) varstubs.h: owl.h config.h owl_prototypes.h |
---|
118 | |
---|
119 | libfaim: libfaim/libfaim.a |
---|
120 | |
---|
121 | libfaim/libfaim.a: |
---|
122 | (cd libfaim; $(MAKE)) |
---|
123 | |
---|
124 | libfaimclean: |
---|
125 | (cd libfaim; $(MAKE) clean) |
---|
126 | |
---|
127 | libfaimdistclean: |
---|
128 | (cd libfaim; $(MAKE) distclean) |
---|
129 | |
---|
130 | install: all installdirs |
---|
131 | ${INSTALL_PROGRAM} $(EXE) ${DESTDIR}${bindir}/$(EXE) |
---|
132 | ${INSTALL_DATA} doc/barnowl.1 ${DESTDIR}${mandir}/man1/barnowl.1 |
---|
133 | ${INSTALL} -d ${DESTDIR}${datadir}/lib |
---|
134 | ${INSTALL} -d ${DESTDIR}${datadir}/modules |
---|
135 | (cd perl/lib && tar --exclude .svn -cf - . ) | (cd ${DESTDIR}${datadir}/lib && tar -xf - ) |
---|
136 | for i in $(PERL_MODULES); do \ |
---|
137 | ${INSTALL_DATA} perl/modules/$$i/$$i.par ${DESTDIR}${datadir}/modules/$$i.par; \ |
---|
138 | done |
---|
139 | |
---|
140 | installdirs: mkinstalldirs |
---|
141 | ${srcdir}/mkinstalldirs ${DESTDIR}${bindir} ${DESTDIR}${mandir}/man1 ${DESTDIR}${datadir} |
---|
142 | |
---|
143 | # For emacs flymake-mode |
---|
144 | check-syntax: proto |
---|
145 | $(CC) $(CFLAGS) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES) |
---|