From 351a9203ad95ebde9aaa0f4feaf0b406a25703e4 Mon Sep 17 00:00:00 2001 From: "Jean-Marc Pigeon (Delson)" Date: Tue, 17 Sep 2024 14:50:04 -0400 Subject: [PATCH] Replacing valide.c by emlval.c --- app/Makefile | 8 ++++---- app/{valide.c => emlval.c} | 0 lib/subrou.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename app/{valide.c => emlval.c} (100%) diff --git a/app/Makefile b/app/Makefile index 80609b0..5022dd0 100644 --- a/app/Makefile +++ b/app/Makefile @@ -23,12 +23,12 @@ clean : EXE= \ emlrec \ maild \ - valide \ + emlval \ SRC= \ emlrec.c \ maild.c \ - valide.c \ + emlval.c \ #-------------------------------------------------------------------- #definitions @@ -50,10 +50,10 @@ emlrec : toremake emlrec.o maild : toremake maild.o @ $(LD) $(LDFLAGS) -o ../bin/$@ $@.o $(LIBS) -valide : toremake valide.o +emlval : toremake emlval.o @ $(LD) $(LDFLAGS) -o ../bin/$@ $@.o $(LIBS) -valide.o: valide.c \ +emlval.o: emlval.c \ ../lib/unidns.h \ ../lib/subafn.h \ ../lib/subrou.h diff --git a/app/valide.c b/app/emlval.c similarity index 100% rename from app/valide.c rename to app/emlval.c diff --git a/lib/subrou.c b/lib/subrou.c index 7b121bf..5e2870c 100644 --- a/lib/subrou.c +++ b/lib/subrou.c @@ -21,7 +21,7 @@ //version definition #define VERSION "0.4.2" -#define RELEASE "28" +#define RELEASE "29" //Public variables PUBLIC int debug=0; //debug level -- 2.47.3