Changeset ac70242 for Makefile.in


Ignore:
Timestamp:
Apr 20, 2003, 12:05:15 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
69894d2
Parents:
801c7cb
Message:
Makefile.in: define DATADIR, for default owlconf.
Makefile.in: provide "all" and "install" rules.
configure.in: try also libdes and libkrb4, for people using heimdal
configure.in: see if des_ecb_encrypt is already prototyped.
configure.in: minor changes to work with new autoconf without needing acconfig.h.
configure.in: find the install program.
configure.in: test for use_default_colors since some versions of
  solaris don't have it, so we can at least compile something
  vaguely working there.
keypress.c: ifdefs for keys not defined on at least some solarises.
owl.c: don't call use_default_colors if we don't have it
readconfig.c: added *commented out* code to try to find a
  system-default owlconf if the user doesn't have one.  Have to
  ponder if I want this
zcrypt.c: don't prototype des_ecb_encrypt if there is a prototype in
  des.h.
zcrypt.c: include owl.h so we get the configure-generated config.h
Change to codelist.pl to deal with new code style
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    re9b1f60 rac70242  
    11
    22# $Id$
     3
     4srcdir = @srcdir@
     5VPATH = @srcdir@
     6
     7prefix = @prefix@
     8exec_prefix = @exec_prefix@
     9
     10datadir = @datadir@
     11bindir = @bindir@
     12mandir = @mandir@
    313
    414CC=@CC@
    515LIBS=@LIBS@
    616#CFLAGS=@CFLAGS@ @DEFS@
    7 CFLAGS=@CFLAGS@
     17CFLAGS=@CFLAGS@ -DDATADIR=\"${datadir}\"
    818LDFLAGS=@LDFLAGS@
    919XSUBPPDIR=@XSUBPPDIR@
     20INSTALL = @INSTALL@
     21INSTALL_PROGRAM = @INSTALL_PROGRAM@
     22INSTALL_DATA = @INSTALL_DATA@
    1023
    1124OBJS=list.o message.o mainwin.o popwin.o zephyr.o messagelist.o commands.o \
     
    4053        perl stubgen.pl > varstubs.c
    4154
     55all: owl
     56
     57install: all installdirs
     58        ${INSTALL_PROGRAM} owl ${bindir}/owl
     59        ${INSTALL_DATA} doc/owl.1 ${mandir}/man1/owl.1
     60
     61installdirs: mkinstalldirs
     62        ${srcdir}/mkinstalldirs ${bindir} ${mandir}/man1 ${datadir}/owl
     63
    4264# Only move owl_prototypes.h into place if the new one is different
    4365owl_prototypes.h: codelist.pl varstubs.c $(OBJS:.o=.c)
Note: See TracChangeset for help on using the changeset viewer.