diff options
author | Christian Hesse <mail@eworm.de> | 2016-01-16 02:13:22 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2016-01-16 02:26:21 +0100 |
commit | 40a0f31f1838d4774ebd960640bfb230dc562ea1 (patch) | |
tree | d2997424c305efd41a210432f1fad8aa9f6d88ee /bin/Makefile | |
parent | f4c501575f6c6119acc8177406612bdfafab3cb3 (diff) | |
download | mkinitcpio-ykfde-40a0f31f1838d4774ebd960640bfb230dc562ea1.tar.gz mkinitcpio-ykfde-40a0f31f1838d4774ebd960640bfb230dc562ea1.tar.zst |
We have support for second factor. Yeah!
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/Makefile b/bin/Makefile index 6e77de8..25faea9 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -3,12 +3,12 @@ CC := gcc INSTALL := install RM := rm # flags -CFLAGS += -std=c11 -O2 -fpic -pie -Wall -Werror +CFLAGS += -std=gnu11 -O2 -fpic -pie -Wall -Werror all: ykfde ykfde-cpio -ykfde: ykfde.c ../config.h - $(CC) $(CFLAGS) -lykpers-1 -lyubikey -liniparser -lcryptsetup $(LDFLAGS) -o ykfde ykfde.c +ykfde: ykfde.c ../config.h ../version.h + $(CC) $(CFLAGS) -lcryptsetup -liniparser -lkeyutils -lykpers-1 -lyubikey $(LDFLAGS) -o ykfde ykfde.c ykfde-cpio: ykfde-cpio.c ../config.h $(CC) $(CFLAGS) -larchive $(LDFLAGS) -o ykfde-cpio ykfde-cpio.c |