diff options
author | Joursoir <chat@joursoir.net> | 2021-03-01 21:10:28 +0000 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-03-01 21:10:28 +0000 |
commit | ce7c8411d7af66904da5e852f01fd95426ccf5c0 (patch) | |
tree | 29a0e1545cf2aa38d128e9031c9495f26582fa18 /Makefile | |
parent | 10b676a2fee216cc00d2ca090a93a23d8b47241f (diff) | |
download | lock-password-ce7c8411d7af66904da5e852f01fd95426ccf5c0.tar.gz lock-password-ce7c8411d7af66904da5e852f01fd95426ccf5c0.tar.bz2 lock-password-ce7c8411d7af66904da5e852f01fd95426ccf5c0.zip |
use xlib for copy password
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ PREFIX = /usr/local/bin CC = gcc -CFLAGS = -Wall -g $(shell gpgme-config --cflags --libs) # -DDEBUG +CFLAGS = -Wall -g \ + $(shell gpgme-config --cflags --libs) #-DDEBUG +ifdef DISPLAY + CFLAGS += -lX11 -DDISPLAY +endif MAN_PATH = /usr/share/man/man1 SOURCES = src/*.c OBJECTS = *.o |