From 54844f81bf5b6131237d3dc1a50448ea0816d091 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 15 May 2008 11:38:15 +0200 Subject: [PATCH] Moved md5crypt and pedant to utils/ and make them compile again. --- Makefile | 1 + utils/Makefile | 8 ++++++++ {src => utils}/md5.c | 0 {src => utils}/md5.h | 0 {src => utils}/md5crypt.c | 0 {src => utils}/pedant.c | 0 6 files changed, 9 insertions(+) create mode 100644 utils/Makefile rename {src => utils}/md5.c (100%) rename {src => utils}/md5.h (100%) rename {src => utils}/md5crypt.c (100%) rename {src => utils}/pedant.c (100%) diff --git a/Makefile b/Makefile index 1d2b6cb..3a68c08 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ include $(s)/sherlock/Makefile endif include $(s)/box/Makefile +include $(s)/utils/Makefile # And finally the default rules of the build system include $(s)/build/Makebottom diff --git a/utils/Makefile b/utils/Makefile new file mode 100644 index 0000000..07a8369 --- /dev/null +++ b/utils/Makefile @@ -0,0 +1,8 @@ +# Makefile for MO-Eval utilities +# (c) 2008 Martin Mares + +DIRS+=utils +PROGS+=$(addprefix $(o)/utils/,md5crypt pedant) + +$(o)/utils/md5crypt: $(o)/utils/md5crypt.o $(o)/utils/md5.o +$(o)/utils/pedant: $(o)/utils/pedant.o diff --git a/src/md5.c b/utils/md5.c similarity index 100% rename from src/md5.c rename to utils/md5.c diff --git a/src/md5.h b/utils/md5.h similarity index 100% rename from src/md5.h rename to utils/md5.h diff --git a/src/md5crypt.c b/utils/md5crypt.c similarity index 100% rename from src/md5crypt.c rename to utils/md5crypt.c diff --git a/src/pedant.c b/utils/pedant.c similarity index 100% rename from src/pedant.c rename to utils/pedant.c -- 2.39.2