From beb6ef975c1648adfa8346d55fa30c2d82d50dbc Mon Sep 17 00:00:00 2001 From: cylgom Date: Wed, 13 Sep 2017 08:38:30 +0200 Subject: [PATCH] fixed linking flags position --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index d3d5e1e..79ab22a 100755 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ build/ly : mkdir -p ./build - cc -std=c99 -pedantic -Wall -I src -L/usr/lib/security -lform -lncurses -lpam -lpam_misc -lX11 -l:pam_loginuid.so -o build/ly src/main.c src/utils.c src/login.c src/ncui.c src/desktop.c + cc -std=c99 -pedantic -Wall -I src -L/usr/lib/security -o build/ly src/main.c src/utils.c src/login.c src/ncui.c src/desktop.c -lform -lncurses -lpam -lpam_misc -lX11 -l:pam_loginuid.so install : build/ly install -d ${DESTDIR}/etc/ly