From c9f8d66ae43a6d7ed715af439012d4d6f39cf220 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Tue, 20 Mar 2018 23:45:45 +0100 Subject: [PATCH] added nonotify to Makefile and updated docs --- Makefile | 3 +++ README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd575c1..436b618 100644 --- a/Makefile +++ b/Makefile @@ -4,5 +4,8 @@ all: spaceapi-gtk spaceapi-gtk: spaceapi-gtk.c $(CC) -Wall -g `pkg-config --cflags --libs gtk+-2.0 --libs libcurl --libs json-c --libs libnotify` -DLIBNOTIFY -o spaceapi-gtk spaceapi-gtk.c +nonotify: spaceapi-gtk.c + $(CC) -Wall -g `pkg-config --cflags --libs gtk+-2.0 --libs libcurl --libs json-c` -o spaceapi-gtk spaceapi-gtk.c + clean: rm -f spaceapi-gtk diff --git a/README.md b/README.md index bf47041..d6b0d27 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This will compile dooris with libnotify support. If you don't want notifications run the following command: - gcc `pkg-config --cflags --libs gtk+-2.0 --libs libcurl --libs json-c` -o spaceapi-gtk spaceapi-gtk.c + make nonotify Installation ------------