diff options
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 |