summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2024-09-29 00:19:24 +0300
committerNakidai <nakidai@disroot.org>2024-09-29 00:19:24 +0300
commit87e288476014ee7c3810d60361bbb58baf3c3cf6 (patch)
tree431c6eeaf75c6cc0441c3ebe1d3b030c58926798 /Makefile
parentb7c04d83fa5df072f5a3bd88cf5802f0aad6ffcb (diff)
downloadcptc-87e288476014ee7c3810d60361bbb58baf3c3cf6.tar.gz
cptc-87e288476014ee7c3810d60361bbb58baf3c3cf6.zip
Make things in alphabetical order in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 75ceac7..f59a763 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
 OBJS += cptc.o
+OBJS += downloadAvatar.o
 OBJS += main.o
 OBJS += requestHandler.o
-OBJS += downloadAvatar.o
 OBJS += root.o
 
 CFLAGS += $(shell curl-config --cflags)
 CFLAGS += -std=c11
 
 LDLIBS += $(shell curl-config --libs)
-LDLIBS += -lcpetpet
 LDLIBS += -lcurl
+LDLIBS += -lcpetpet
 RM = rm -f
 
 all: cptc