summaryrefslogtreecommitdiff
path: root/wmname/Makefile
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2022-06-20 19:54:29 +0000
committerstkhan <personal@slickd.xyz>2022-06-20 19:54:29 +0000
commit4c40a4dc245f7715f4891ed02d71475628e7a959 (patch)
treefa52419490b5a0d89d746f6e3a0b0c1e675b7726 /wmname/Makefile
parent513b0e238b98f72a01d740a0bd99a3739918645c (diff)
new directory structure
Diffstat (limited to 'wmname/Makefile')
-rw-r--r--wmname/Makefile51
1 files changed, 0 insertions, 51 deletions
diff --git a/wmname/Makefile b/wmname/Makefile
deleted file mode 100644
index 61e7027..0000000
--- a/wmname/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# wmname - prints/sets the WM name
-
-include config.mk
-include ../config.mk
-
-SRC = wmname.c
-OBJ = ${SRC:.c=.o}
-
-all: options wmname
-
-options:
- @echo wmname build options:
- @echo "CFLAGS = ${CFLAGS}"
- @echo "LDFLAGS = ${LDFLAGS}"
- @echo "CC = ${CC}"
- @echo "LD = ${LD}"
-
-.c.o:
- @echo CC $<
- @${CC} -c ${CFLAGS} $<
-
-${OBJ}: config.mk
-
-wmname: ${OBJ}
- @echo LD $@
- @${LD} -o $@ ${OBJ} ${LDFLAGS}
- @strip $@
-
-clean:
- @echo cleaning
- @rm -f wmname ${OBJ} wmname-${VERSION}.tar.gz
-
-dist: clean
- @echo creating dist tarball
- @mkdir -p wmname-${VERSION}
- @cp -R LICENSE Makefile README config.mk ${SRC} wmname-${VERSION}
- @tar -cf wmname-${VERSION}.tar wmname-${VERSION}
- @gzip wmname-${VERSION}.tar
- @rm -rf wmname-${VERSION}
-
-install: all
- @echo installing executable file to ${DESTDIR}${PREFIX}/bin
- @mkdir -p ${DESTDIR}${PREFIX}/bin
- @cp -f wmname ${DESTDIR}${PREFIX}/bin
- @chmod 755 ${DESTDIR}${PREFIX}/bin/wmname
-
-uninstall:
- @echo removing executable file from ${DESTDIR}${PREFIX}/bin
- @rm -f ${DESTDIR}${PREFIX}/bin/wmname
-
-.PHONY: all options clean dist install uninstall