about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-22 18:10:00 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-22 18:10:00 +0200
commitd8edb56851775b15040eb656635c9481e938c129 (patch)
tree603fc03bfd83eced77cb4b9ec2715ef5f9daed8c /Makefile
parent5bb49863ccb326b431b508ce55e0567b5b3be540 (diff)
downloadmblaze-d8edb56851775b15040eb656635c9481e938c129.tar.gz
mblaze-d8edb56851775b15040eb656635c9481e938c129.tar.xz
mblaze-d8edb56851775b15040eb656635c9481e938c129.zip
Makefile: sort targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 0294a1f..cbbbf62 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,20 @@
 CFLAGS=-g -O1 -Wall -Wno-switch -Wextra -fstack-protector-strong -D_FORTIFY_SOURCE=2
 
-ALL = mscan mthread mhdr mshow mlist mseq msort mmime minc mflag mdirs
+ALL = mdirs mflag mhdr minc mlist mmime mscan mseq mshow msort mthread
 
 all: $(ALL)
 
-mscan: mscan.o blaze822.o seq.o rfc2047.o
-mthread: mthread.o blaze822.o seq.o
+mdirs: mdirs.o
+mflag: mflag.o blaze822.o seq.o
 mhdr: mhdr.o blaze822.o seq.o rfc2047.o
-mshow: mshow.o blaze822.o seq.o rfc2045.o rfc2047.c
+minc: minc.o
 mlist: mlist.o
+mmime: mmime.o
+mscan: mscan.o blaze822.o seq.o rfc2047.o
 mseq: mseq.o seq.o
+mshow: mshow.o blaze822.o seq.o rfc2045.o rfc2047.c
 msort: msort.o blaze822.o seq.o
-mmime: mmime.o
-minc: minc.o
-mflag: mflag.o blaze822.o seq.o
-mdirs: mdirs.o
+mthread: mthread.o blaze822.o seq.o
 
 clean: FRC
 	-rm -f $(ALL) *.o