source: Makefile.in @ 0ff8fb57

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 0ff8fb57 was 0ff8fb57, checked in by James M. Kretchmar <kretch@mit.edu>, 21 years ago
More AIM work. The auto-prototype building has been re-enabled as well.
  • Property mode set to 100644
File size: 2.5 KB
Line 
1# $Id$
2
3srcdir = @srcdir@
4VPATH = @srcdir@
5prefix = @prefix@
6exec_prefix = @exec_prefix@
7datadir = @datadir@
8bindir = @bindir@
9mandir = @mandir@
10
11CC=@CC@
12LIBS=@LIBS@ -L./libfaim -lfaim
13CFLAGS=@CFLAGS@ -I. -I./libfaim -DDATADIR=\"${datadir}\"
14LDFLAGS=@LDFLAGS@
15XSUBPPDIR=@XSUBPPDIR@
16INSTALL=@INSTALL@
17INSTALL_PROGRAM=@INSTALL_PROGRAM@
18INSTALL_DATA=@INSTALL_DATA@
19
20BASE_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 \
22     readconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \
23     regex.c history.c view.c dict.c variable.c filterelement.c pair.c \
24     keypress.c keymap.c keybinding.c cmd.c context.c zcrypt.c aim.c
25OWL_SRC = owl.c
26TESTER_SRC = tester.c
27
28BASE_OBJS = $(BASE_SRCS:.c=.o)
29
30GEN_C = varstubs.c perlglue.c
31GEN_H = owl_prototypes.h
32GEN_O = $(GEN_C:.c=.o)
33
34OBJS = $(BASE_OBJS) $(GEN_O)
35
36AUTOGEN=$(GEN_C) $(GEN_H)
37#AUTOGEN=$(GEN_C)
38
39
40owl: $(AUTOGEN) $(OBJS) owl.o libfaim
41        ./athstatic $(CC) -o owl owl.o $(OBJS) $(LDFLAGS) $(LIBS)
42
43tester: $(OBJS) tester.o
44        $(CC) -o tester tester.o $(OBJS) $(LDFLAGS) $(LIBS)
45
46test: tester
47        ./tester reg
48
49clean: libfaimclean
50        $(RM) owl tester *.o $(AUTOGEN) owl_prototypes.h.new
51
52distclean: clean libfaimdistclean
53        $(RM) config.cache config.log config.status Makefile config.h TAGS *~ core
54
55proto: owl_prototypes.h
56
57perlglue.c: perlglue.xs
58        perl $(XSUBPPDIR)/xsubpp -typemap $(XSUBPPDIR)/typemap -prototypes perlglue.xs > perlglue.c
59
60varstubs.c: variable.c stubgen.pl
61        perl stubgen.pl > varstubs.c
62
63# Only move owl_prototypes.h into place if the new one is different
64owl_prototypes.h: codelist.pl varstubs.c $(BASE_SRCS)
65        perl codelist.pl > owl_prototypes.h.new
66        @cmp -s owl_prototypes.h.new $@ || { \
67         echo 'Interfaces changed!'; \
68         echo mv -f owl_prototypes.h.new $@; \
69              mv -f owl_prototypes.h.new $@; }
70#owl_prototypes.h:
71
72.PHONY: tags clean distclean proto test
73
74tags: TAGS
75
76TAGS: $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H)
77        etags $(BASE_SRCS) $(OWL_SRC) $(TESTER_SRC) $(GEN_C) owl.h $(GEN_H)
78
79$(BASE_OBJS) varstubs.h:: owl.h config.h owl_prototypes.h
80#$(BASE_OBJS) varstubs.h:: owl.h config.h
81
82libfaim: libfaim/libfaim.a
83
84libfaim/libfaim.a:
85        (cd libfaim; $(MAKE))
86
87libfaimclean:
88        (cd libfaim; $(MAKE) clean)
89
90libfaimdistclean:
91        (cd libfaim; $(MAKE) distclean)
92
93all: owl
94
95install: all installdirs
96        ${INSTALL_PROGRAM} owl ${bindir}/owl
97        ${INSTALL_DATA} doc/owl.1 ${mandir}/man1/owl.1
98
99installdirs: mkinstalldirs
100        ${srcdir}/mkinstalldirs ${bindir} ${mandir}/man1 ${datadir}/owl
Note: See TracBrowser for help on using the repository browser.