From 4ee2739bac6beae55a3c785f6a0263fe61976532 Mon Sep 17 00:00:00 2001 From: Johannes Bauer Date: Wed, 23 Oct 2019 22:31:41 +0200 Subject: [PATCH] Prettify Makefile Have the dependent objects in alphabetical order. --- Makefile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f0ff81a..bc95ff8 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,23 @@ PYPGMOPTS := ../Python/pypgmopts/pypgmopts LDFLAGS := `pkg-config --libs openssl` -OBJS := luksrku.o editor.o util.o log.o keydb.o file_encryption.o uuid.o argparse_edit.o pgmopts.o openssl.o server.o argparse_server.o thread.o argparse_client.o client.o signals.o +OBJS := \ + argparse_client.o \ + argparse_edit.o \ + argparse_server.o \ + client.o \ + editor.o \ + file_encryption.o \ + keydb.o \ + log.o \ + luksrku.o \ + openssl.o \ + pgmopts.o \ + server.o \ + signals.o \ + thread.o \ + util.o \ + uuid.o parsers: $(PYPGMOPTS) -n edit parsers/parser_edit.py