aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e77241b..0bd95f3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
GCC := gcc
CFLAGS_DBUS := $(shell pkg-config --cflags --libs dbus-1)
-CFLAGS = -g -Wall -O ${CFLAGS_DBUS}
+CFLAGS = -Wall -O ${CFLAGS_DBUS}
DEST =
@@ -14,9 +14,11 @@ o_files := $(patsubst %.c,%.o,$(wildcard *.c))
snotifd: ${o_files}
${GCC} -o $@ $@.o snotif.o ${CFLAGS}
+ strip snotifd
snotifc: ${o_files}
${GCC} -o $@ $@.o snotif.o ${CFLAGS} -lncursesw
+ strip snotifc
install: snotifc snotifd
install snotifd ${HOME}/bin/snotifd