Update CHANGES: configure fix for readline
[tftp-hpa.git] / MCONFIG.in
blob68aab37e1e3b7ad8f3b57b605d58312ce528701f
1 ## -*- makefile -*- ------------------------------------------------------
2 ##   
3 ##   Copyright 2001 H. Peter Anvin - All Rights Reserved
4 ##
5 ##   This program is free software available under the same license
6 ##   as the "OpenBSD" operating system, distributed at
7 ##   http://www.openbsd.org/.
8 ##
9 ## ----------------------------------------------------------------------- 
10 ## $Id$
13 ## MCONFIG.in
15 ## Basic Makefile definitions
18 # Prefixes
19 prefix      = @prefix@
20 exec_prefix = @exec_prefix@
22 # Directory for user binaries
23 BINDIR  = @bindir@
25 # Man page tree
26 MANDIR  = @mandir@
28 # System binaries
29 SBINDIR = @sbindir@
31 # Binary suffixes
32 O = @OBJEXT@
33 X = @EXEEXT@
35 # Install into alternate root area, e.g. for package generation
36 INSTALLROOT = 
38 # Link
39 LN_S            = @LN_S@
41 # Install program
42 INSTALL         = @INSTALL@
43 INSTALL_PROGRAM = @INSTALL_PROGRAM@
44 INSTALL_DATA    = @INSTALL_DATA@
46 # Compiler and compiler flags
47 CC      = @CC@
48 CFLAGS  = @CFLAGS@ -I$(SRCROOT)
50 # Link flags
51 LDFLAGS = @LDFLAGS@
53 # Libraries (client and server)
54 TFTP_LIBS  = @TFTP_LIBS@
55 TFTPD_LIBS = @TFTPD_LIBS@
57 # Additional library we need to build
58 LIBOBJS = @LIBOBJS@
60 # Additional tftpd objects we need to build
61 TFTPDOBJS = @TFTPDOBJS@
63 # ar and ranlib (for making libraries)
64 AR      = ar cq
65 RANLIB  = @RANLIB@