aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--udev/Makefile5
2 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 496f6ca..7f01ecd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,4 @@
+# commands
INSTALL := install
all: udev/ykfde
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