[1aee7d9] | 1 | # $Id$ |
---|
| 2 | |
---|
[ac70242] | 3 | srcdir = @srcdir@ |
---|
| 4 | VPATH = @srcdir@ |
---|
| 5 | prefix = @prefix@ |
---|
| 6 | exec_prefix = @exec_prefix@ |
---|
| 7 | datadir = @datadir@ |
---|
| 8 | bindir = @bindir@ |
---|
| 9 | mandir = @mandir@ |
---|
| 10 | |
---|
[7d4fbcd] | 11 | CC=@CC@ |
---|
[d09e5a1] | 12 | LIBS=@LIBS@ -L./libfaim -lfaim |
---|
| 13 | CFLAGS=@CFLAGS@ -I. -I./libfaim -DDATADIR=\"${datadir}\" |
---|
[7d4fbcd] | 14 | LDFLAGS=@LDFLAGS@ |
---|
[8ee73f8d] | 15 | XSUBPPDIR=@XSUBPPDIR@ |
---|
[aaf6071] | 16 | INSTALL=@INSTALL@ |
---|
| 17 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
| 18 | INSTALL_DATA=@INSTALL_DATA@ |
---|
| 19 | |
---|
| 20 | BASE_SRCS=list.c message.c mainwin.c popwin.c zephyr.c messagelist.c \ |
---|
| 21 | commands.c global.c text.c fmtext.c editwin.c util.c logging.c \ |
---|
[f1e629d] | 22 | perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \ |
---|
[aaf6071] | 23 | regex.c history.c view.c dict.c variable.c filterelement.c pair.c \ |
---|
[aa5f725] | 24 | keypress.c keymap.c keybinding.c cmd.c context.c zcrypt.c \ |
---|
[ec6ff52] | 25 | aim.c buddy.c buddylist.c timer.c style.c stylefunc.c errqueue.c |
---|
[aaf6071] | 26 | OWL_SRC = owl.c |
---|
| 27 | TESTER_SRC = tester.c |
---|
| 28 | |
---|
| 29 | BASE_OBJS = $(BASE_SRCS:.c=.o) |
---|
[7d4fbcd] | 30 | |
---|
[f1e629d] | 31 | GEN_C = varstubs.c perlglue.c perlwrap.c |
---|
[aaf6071] | 32 | GEN_H = owl_prototypes.h |
---|
| 33 | GEN_O = $(GEN_C:.c=.o) |
---|
| 34 | |
---|
| 35 | OBJS = $(BASE_OBJS) $(GEN_O) |
---|
| 36 | |
---|
[0ff8fb57] | 37 | AUTOGEN=$(GEN_C) $(GEN_H) |
---|
| 38 | #AUTOGEN=$(GEN_C) |
---|
[7d4fbcd] | 39 | |
---|
| 40 | |
---|
[d09e5a1] | 41 | owl: $(AUTOGEN) $(OBJS) owl.o libfaim |
---|
[601a9e0] | 42 | ./athstatic $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS) |
---|
[7d4fbcd] | 43 | |
---|
[aaf6071] | 44 | tester: $(OBJS) tester.o |
---|
[7d4fbcd] | 45 | $(CC) -o tester tester.o $(OBJS) $(LDFLAGS) $(LIBS) |
---|
| 46 | |
---|
| 47 | test: tester |
---|
| 48 | ./tester reg |
---|
| 49 | |
---|
[d09e5a1] | 50 | clean: libfaimclean |
---|
[e9b1f60] | 51 | $(RM) owl tester *.o $(AUTOGEN) owl_prototypes.h.new |
---|
[7d4fbcd] | 52 | |
---|
[d09e5a1] | 53 | distclean: clean libfaimdistclean |
---|
[e9b1f60] | 54 | $(RM) config.cache config.log config.status Makefile config.h TAGS *~ core |
---|
[7d4fbcd] | 55 | |
---|
[0ff8fb57] | 56 | proto: owl_prototypes.h |
---|
[7d4fbcd] | 57 | |
---|
[8ee73f8d] | 58 | perlglue.c: perlglue.xs |
---|
| 59 | perl $(XSUBPPDIR)/xsubpp -typemap $(XSUBPPDIR)/typemap -prototypes perlglue.xs > perlglue.c |
---|
[7d4fbcd] | 60 | |
---|
| 61 | varstubs.c: variable.c stubgen.pl |
---|
| 62 | perl stubgen.pl > varstubs.c |
---|
| 63 | |
---|
[f1e629d] | 64 | perlwrap.c: perlwrap.pm encapsulate.pl |
---|
| 65 | perl encapsulate.pl perlwrap.pm owl_perlwrap_codebuff > perlwrap.c |
---|
| 66 | |
---|
[aaf6071] | 67 | # Only move owl_prototypes.h into place if the new one is different |
---|
[0ff8fb57] | 68 | owl_prototypes.h: codelist.pl varstubs.c $(BASE_SRCS) |
---|
| 69 | perl codelist.pl > owl_prototypes.h.new |
---|
| 70 | @cmp -s owl_prototypes.h.new $@ || { \ |
---|
[8c92848] | 71 | test -f $@ && echo 'Interfaces changed!'; \ |
---|
[0ff8fb57] | 72 | echo mv -f owl_prototypes.h.new $@; \ |
---|
| 73 | mv -f owl_prototypes.h.new $@; } |
---|
| 74 | #owl_prototypes.h: |
---|
[aaf6071] | 75 | |
---|
| 76 | .PHONY: tags clean distclean proto test |
---|
| 77 | |
---|
| 78 | tags: TAGS |
---|
| 79 | |
---|
| 80 | TAGS: $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H) |
---|
| 81 | etags $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H) |
---|
| 82 | |
---|
[0ff8fb57] | 83 | $(BASE_OBJS) varstubs.h:: owl.h config.h owl_prototypes.h |
---|
| 84 | #$(BASE_OBJS) varstubs.h:: owl.h config.h |
---|
[d09e5a1] | 85 | |
---|
| 86 | libfaim: libfaim/libfaim.a |
---|
| 87 | |
---|
| 88 | libfaim/libfaim.a: |
---|
| 89 | (cd libfaim; $(MAKE)) |
---|
| 90 | |
---|
| 91 | libfaimclean: |
---|
| 92 | (cd libfaim; $(MAKE) clean) |
---|
| 93 | |
---|
| 94 | libfaimdistclean: |
---|
| 95 | (cd libfaim; $(MAKE) distclean) |
---|
[aaf6071] | 96 | |
---|
[ac70242] | 97 | all: owl |
---|
| 98 | |
---|
| 99 | install: all installdirs |
---|
| 100 | ${INSTALL_PROGRAM} owl ${bindir}/owl |
---|
| 101 | ${INSTALL_DATA} doc/owl.1 ${mandir}/man1/owl.1 |
---|
| 102 | |
---|
| 103 | installdirs: mkinstalldirs |
---|
| 104 | ${srcdir}/mkinstalldirs ${bindir} ${mandir}/man1 ${datadir}/owl |
---|