Move dunst source files to src/

This commit is contained in:
Nikos Tsipinakis 2016-11-19 11:54:03 +02:00
parent 4b36abff9a
commit 2df2e7d06c
19 changed files with 5 additions and 10 deletions

View File

@ -3,15 +3,10 @@
include config.mk
SRC = x.c \
dunst.c \
dbus.c \
utils.c \
option_parser.c \
settings.c \
rules.c \
menu.c \
notification.c
CFLAGS += -I.
LDFLAGS += -L.
SRC = $(shell ls src/*.c)
OBJ = ${SRC:.c=.o}
V ?= 0
@ -29,7 +24,7 @@ options:
.c.o:
@echo CC -c $<
${CC} -c $< ${CFLAGS}
${CC} -o $@ -c $< ${CFLAGS}
${OBJ}: config.h config.mk

View File

View File

View File

View File

View File

View File