New release script
[tftp-hpa.git] / MCONFIG.in
blob5788e816dd3f7d0f6197e488c6f95ea4157329d1
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 # Source and object root
19 SRCROOT     = @SRCROOT@
20 OBJROOT     = @OBJROOT@
22 # Prefixes
23 prefix      = @prefix@
24 exec_prefix = @exec_prefix@
26 # Directory for user binaries
27 BINDIR  = @bindir@
29 # Man page tree
30 MANDIR  = @mandir@
32 # System binaries
33 SBINDIR = @sbindir@
35 # Binary suffixes
36 O = @OBJEXT@
37 X = @EXEEXT@
39 # Install into alternate root area, e.g. for package generation
40 INSTALLROOT = 
42 # Link
43 LN_S            = @LN_S@
45 # Install program
46 INSTALL         = @INSTALL@
47 INSTALL_PROGRAM = @INSTALL_PROGRAM@
48 INSTALL_DATA    = @INSTALL_DATA@
50 # Compiler and compiler flags
51 CC      = @CC@
52 CFLAGS  = @CFLAGS@ -I$(SRCROOT)
54 # Link flags
55 LDFLAGS = @LDFLAGS@
57 # Libraries (client and server)
58 TFTP_LIBS  = @TFTP_LIBS@
59 TFTPD_LIBS = @TFTPD_LIBS@
61 # Additional library we need to build
62 LIBOBJS = @LIBOBJS@
64 # Additional tftpd objects we need to build
65 TFTPDOBJS = @TFTPDOBJS@
67 # ar and ranlib (for making libraries)
68 AR      = ar cq
69 RANLIB  = @RANLIB@