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

View File

View File

View File

View File

View File

View File