Move sources to src/

This commit is contained in:
Guillem Jover 2006-02-14 05:39:29 +00:00
parent 6be6380e10
commit 5372b73685
12 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,27 @@
2006-02-14 Guillem Jover <guillem@debian.org>
* arc4random.c: Move to ...
* src/arc4random.c: ... here.
* bsd_getopt.c: Move to ...
* src/bsd_getopt.c:: ... here.
* err.c: Move to ...
* src/err.c:: ... here.
* fgetln.c: Move to ...
* src/fgetln.c:: ... here.
* fmtcheck.c: Move to ...
* src/fmtcheck.c:: ... here.
* inet_net_pton.c: Move to ...
* src/inet_net_pton.c:: ... here.
* strlcat.c: Move to ...
* src/strlcat.c:: ... here.
* strlcpy.c: Move to ...
* src/strlcpy.c:: ... here.
* md5c.c: Move to ...
* src/md5c.c:: ... here.
* md5.copyright: Move to ...
* src/md5.copyright:: ... here.
* Makefile (LIB_SRCS): Automatically prefix the src/ dir.
2006-02-14 Guillem Jover <guillem@debian.org>
* Makefile (LIB_SRCS): Line wrap.

View File

@ -4,8 +4,9 @@
# $Id$
#
LIB_SRCS = arc4random.c bsd_getopt.c err.c fgetln.c inet_net_pton.c \
strlcat.c strlcpy.c md5c.c fmtcheck.c
LIB_SRCS := arc4random.c bsd_getopt.c err.c fgetln.c inet_net_pton.c \
strlcat.c strlcpy.c md5c.c fmtcheck.c
LIB_SRCS := $(patsubst %,src/%,$(LIB_SRCS))
LIB_INCLUDES := err.h getopt.h ip_icmp.h random.h queue.h md5.h string.h \
bsd.h stdlib.h

View File

View File