diff options
| author | bard <[email protected]> | 2024-05-31 16:01:49 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-05-31 16:01:49 -0400 |
| commit | 8aa290ce1d935d1206c875f7c2483180cbc42763 (patch) | |
| tree | 0380849e89ba3237ab05583de96d0950deae880d /dwm/Repositories/luke-dwm/Makefile | |
| parent | 8f0231d5f45adf980717ea1453a92d05f7093c74 (diff) | |
move to another repo
Diffstat (limited to 'dwm/Repositories/luke-dwm/Makefile')
| -rw-r--r-- | dwm/Repositories/luke-dwm/Makefile | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/dwm/Repositories/luke-dwm/Makefile b/dwm/Repositories/luke-dwm/Makefile deleted file mode 100644 index 11a49c4..0000000 --- a/dwm/Repositories/luke-dwm/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# 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} - -all: options dwm - -options: - @echo dwm build options: - @echo "CFLAGS = ${CFLAGS}" - @echo "LDFLAGS = ${LDFLAGS}" - @echo "CC = ${CC}" - -.c.o: - ${CC} -c ${CFLAGS} $< - -${OBJ}: config.h config.mk - -dwm: ${OBJ} - ${CC} -o $@ ${OBJ} ${LDFLAGS} - -clean: - rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz *.orig *.rej - -dist: clean - mkdir -p dwm-${VERSION} - cp -R LICENSE Makefile README config.mk\ - dwm.1 drw.h util.h ${SRC} 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 - install -Dm755 ./dwm ${DESTDIR}${PREFIX}/bin - 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/dwm - install -Dm644 ./larbs.mom ${DESTDIR}${PREFIX}/share/dwm - -uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/dwm\ - ${DESTDIR}${PREFIX}/share/dwm/larbs.mom\ - ${DESTDIR}${MANPREFIX}/man1/dwm.1 - -.PHONY: all options clean dist install uninstall |
