aboutsummaryrefslogtreecommitdiffstats
path: root/udev
diff options
context:
space:
mode:
Diffstat (limited to 'udev')
-rw-r--r--udev/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/udev/Makefile b/udev/Makefile
index ff4ed5a..ad3786e 100644
--- a/udev/Makefile
+++ b/udev/Makefile
@@ -1,11 +1,14 @@
+# commands
CC := gcc
INSTALL := install
RM := rm
+# flags
+CFLAGS += -O2 -Wall -Werror
all: ykfde
ykfde: ykfde.c
- $(CC) $(FLAGS) -lykpers-1 -lyubikey -liniparser $(LDFLAGS) -o ykfde ykfde.c
+ $(CC) $(CFLAGS) -lykpers-1 -lyubikey -liniparser $(LDFLAGS) -o ykfde ykfde.c
install: ykfde
$(INSTALL) -D -m0644 20-ykfde.rules $(DESTDIR)/usr/lib/initcpio/udev/20-ykfde.rules