mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
3e97a1d25c
The Makefile used to suppress output (by using @), so this target made sense at the time. But the Makefile should be simple and make debugging with less abstractions or fancy printing. The Makefile was made verbose and doesn't hide the build output, so remove this target. Prompted by a question on the mailing list about the options target. ref. https://git.suckless.org/dwm/commit/9f8855343c881bdc01b9fff5b956537ba1106b76.html
72 lines
1.7 KiB
Makefile
72 lines
1.7 KiB
Makefile
# dwm - dynamic window manager
|
|
# See LICENSE file for copyright and license details.
|
|
|
|
include config.mk
|
|
|
|
SRC = drw.c dwm.c util.c
|
|
OBJ = ${SRC:.c=.o}
|
|
|
|
# FreeBSD users, prefix all ifdef, else and endif statements with a . for this to work (e.g. .ifdef)
|
|
|
|
ifdef YAJLLIBS
|
|
all: dwm dwm-msg
|
|
else
|
|
all: dwm
|
|
endif
|
|
|
|
.c.o:
|
|
${CC} -c ${CFLAGS} $<
|
|
|
|
${OBJ}: config.h config.mk patches.h
|
|
|
|
config.h:
|
|
cp config.def.h $@
|
|
|
|
patches.h:
|
|
cp patches.def.h $@
|
|
|
|
dwm: ${OBJ}
|
|
${CC} -o $@ ${OBJ} ${LDFLAGS}
|
|
|
|
ifdef YAJLLIBS
|
|
dwm-msg:
|
|
${CC} -o $@ patch/ipc/dwm-msg.c ${LDFLAGS}
|
|
endif
|
|
|
|
clean:
|
|
rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz
|
|
rm -f dwm-msg
|
|
|
|
dist: clean
|
|
mkdir -p dwm-${VERSION}
|
|
cp -R LICENSE Makefile README config.def.h config.mk\
|
|
dwm.1 drw.h util.h ${SRC} dwm.png transient.c dwm-${VERSION}
|
|
tar -cf dwm-${VERSION}.tar dwm-${VERSION}
|
|
gzip dwm-${VERSION}.tar
|
|
rm -rf dwm-${VERSION}
|
|
|
|
install: all
|
|
mkdir -p ${DESTDIR}${PREFIX}/bin
|
|
cp -f dwm ${DESTDIR}${PREFIX}/bin
|
|
ifdef YAJLLIBS
|
|
cp -f dwm-msg ${DESTDIR}${PREFIX}/bin
|
|
endif
|
|
#cp -f patch/dwmc ${DESTDIR}${PREFIX}/bin
|
|
chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
|
|
ifdef YAJLLIBS
|
|
chmod 755 ${DESTDIR}${PREFIX}/bin/dwm-msg
|
|
endif
|
|
mkdir -p ${DESTDIR}${MANPREFIX}/man1
|
|
sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
|
|
chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
|
|
mkdir -p ${DESTDIR}${PREFIX}/share/xsessions
|
|
test -f ${DESTDIR}${PREFIX}/share/xsessions/dwm.desktop || cp -n dwm.desktop ${DESTDIR}${PREFIX}/share/xsessions
|
|
chmod 644 ${DESTDIR}${PREFIX}/share/xsessions/dwm.desktop
|
|
|
|
uninstall:
|
|
rm -f ${DESTDIR}${PREFIX}/bin/dwm\
|
|
${DESTDIR}${MANPREFIX}/man1/dwm.1\
|
|
${DESTDIR}${PREFIX}/share/xsessions/dwm.desktop
|
|
|
|
.PHONY: all clean dist install uninstall
|