diff options
author | Guillem Jover <guillem@hadrons.org> | 2006-02-14 05:39:29 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2008-05-06 08:50:42 +0300 |
commit | 5372b7368573739ee3bd38c5bb76b187e8241279 (patch) | |
tree | 37970ec5a9de3265bd8ed5b8b60e591c5be1ad65 | |
parent | 6be6380e10b4f87575060e7839e530642a0182fa (diff) | |
download | libbsd-5372b7368573739ee3bd38c5bb76b187e8241279.tar.gz |
Move sources to src/
-rw-r--r-- | ChangeLog | 24 | ||||
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | src/arc4random.c (renamed from arc4random.c) | 0 | ||||
-rw-r--r-- | src/bsd_getopt.c (renamed from bsd_getopt.c) | 0 | ||||
-rw-r--r-- | src/err.c (renamed from err.c) | 0 | ||||
-rw-r--r-- | src/fgetln.c (renamed from fgetln.c) | 0 | ||||
-rw-r--r-- | src/fmtcheck.c (renamed from fmtcheck.c) | 0 | ||||
-rw-r--r-- | src/inet_net_pton.c (renamed from inet_net_pton.c) | 0 | ||||
-rw-r--r-- | src/md5.copyright (renamed from md5.copyright) | 0 | ||||
-rw-r--r-- | src/md5c.c (renamed from md5c.c) | 0 | ||||
-rw-r--r-- | src/strlcat.c (renamed from strlcat.c) | 0 | ||||
-rw-r--r-- | src/strlcpy.c (renamed from strlcpy.c) | 0 |
12 files changed, 27 insertions, 2 deletions
@@ -1,5 +1,29 @@ 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. (LIB_INCLUDES): List only the files, automatically prefix the dir. (LIB_MANS): Likewise. @@ -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 diff --git a/arc4random.c b/src/arc4random.c index 22dae59..22dae59 100644 --- a/arc4random.c +++ b/src/arc4random.c diff --git a/bsd_getopt.c b/src/bsd_getopt.c index 8245fc8..8245fc8 100644 --- a/bsd_getopt.c +++ b/src/bsd_getopt.c diff --git a/fmtcheck.c b/src/fmtcheck.c index 5d54b7c..5d54b7c 100644 --- a/fmtcheck.c +++ b/src/fmtcheck.c diff --git a/inet_net_pton.c b/src/inet_net_pton.c index 6381b6a..6381b6a 100644 --- a/inet_net_pton.c +++ b/src/inet_net_pton.c diff --git a/md5.copyright b/src/md5.copyright index f5ecc5b..f5ecc5b 100644 --- a/md5.copyright +++ b/src/md5.copyright diff --git a/strlcat.c b/src/strlcat.c index 062ba38..062ba38 100644 --- a/strlcat.c +++ b/src/strlcat.c diff --git a/strlcpy.c b/src/strlcpy.c index ceb2849..ceb2849 100644 --- a/strlcpy.c +++ b/src/strlcpy.c |