From dc9e1fb7f31e28f33795d806f97018bb8802602f Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Wed, 20 Jul 2016 13:50:53 +0200 Subject: [PATCH] mscan: rename from scan --- Makefile | 4 ++-- scan.c => mscan.c | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scan.c => mscan.c (100%) diff --git a/Makefile b/Makefile index 802a4fd..37008e4 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ CFLAGS=-g -O1 -Wall -Wno-switch -Wextra -fstack-protector-strong -D_FORTIFY_SOURCE=2 -ALL = scan thread hdr show list mseq msort +ALL = mscan thread hdr show list mseq msort all: $(ALL) -scan: scan.o blaze822.o seq.o rfc2047.o +mscan: mscan.o blaze822.o seq.o rfc2047.o thread: thread.o blaze822.o seq.o hdr: hdr.o blaze822.o seq.o rfc2047.o show: show.o blaze822.o seq.o rfc2045.o rfc2047.c diff --git a/scan.c b/mscan.c similarity index 100% rename from scan.c rename to mscan.c