Change tftpd -V => in.tftpd -V
[tftp-hpa.git] / MCONFIG.in
blob5e1d8f1cbf44024d0070852850c5c55a14eda279
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 # Install into alternate root area, e.g. for package generation
32 INSTALLROOT = 
34 # Install program
35 INSTALL         = @INSTALL@
36 INSTALL_PROGRAM = @INSTALL_PROGRAM@
37 INSTALL_DATA    = @INSTALL_DATA@
39 # Compiler and compiler flags
40 CC      = @CC@
41 CFLAGS  = @CFLAGS@ -I$(SRCROOT)
43 # Link flags
44 LDFLAGS = @LDFLAGS@
46 # Libraries (client and server)
47 TFTP_LIBS  = @TFTP_LIBS@
48 TFTPD_LIBS = @TFTPD_LIBS@
50 # Additional library we need to build
51 LIBOBJS = @LIBOBJS@
53 # Additional tftpd objects we need to build
54 TFTPDOBJS = @TFTPDOBJS@
56 # ar and ranlib (for making libraries)
57 AR      = ar cq
58 RANLIB  = @RANLIB@