Changeset 5815eef in code for Makefile


Ignore:
Timestamp:
Mar 4, 2014, 10:36:23 AM (11 years ago)
Author:
Mike Belopuhov <mike@…>
Branches:
master
Children:
0c4d8fc
Parents:
b4049f9
Message:

Better formatting and additional warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    rb4049f9 r5815eef  
    1 PREFIX?=/usr/local
    2 BINDIR= ${PREFIX}/sbin
    3 MANDIR= ${PREFIX}/man/man
     1PREFIX?=        /usr/local
     2BINDIR=         ${PREFIX}/sbin
     3MANDIR=         ${PREFIX}/man/man
    44
    5 PROG=   icbd
    6 SRCS=   cmd.c dns.c icb.c icbd.c
    7 MAN=    icbd.8
     5PROG=           icbd
     6SRCS=           cmd.c dns.c icb.c icbd.c
     7MAN=            icbd.8
    88
    9 CFLAGS+=-W -Wall -Werror
     9CFLAGS+=        -W -Wall -Werror
     10CFLAGS+=        -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
     11CFLAGS+=        -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
    1012
    11 DPADD=  ${LIBEVENT}
    12 LDADD=  -levent
     13DPADD=          ${LIBEVENT}
     14LDADD=          -levent
    1315
    1416.include <bsd.prog.mk>
Note: See TracChangeset for help on using the changeset viewer.