From 2e81fbdf15168a5b6df291b7062d120156a5ce45 Mon Sep 17 00:00:00 2001 From: stkhan Date: Fri, 13 May 2022 18:15:43 +0000 Subject: Removed dwm scripts, sfm, , added scroll, and added dark theme to surf --- sfm-0.4/Makefile | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 sfm-0.4/Makefile (limited to 'sfm-0.4/Makefile') diff --git a/sfm-0.4/Makefile b/sfm-0.4/Makefile deleted file mode 100644 index dae243f..0000000 --- a/sfm-0.4/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# sfm - simple file manager -# See LICENSE file for copyright and license details. - -include config.mk - -SRC = sfm.c util.c termbox.c utf8.c -OBJ = ${SRC:.c=.o} - -all: options sfm - -options: - @echo sfm build options: - @echo "CFLAGS = ${CFLAGS}" - @echo "LDFLAGS = ${LDFLAGS}" - @echo "CC = ${CC}" - -.c.o: - ${CC} -c ${CFLAGS} $< - -${OBJ}: config.h config.mk - -config.h: - cp config.def.h $@ - -sfm: ${OBJ} - ${CC} ${LDFLAGS} -o $@ ${OBJ} - -clean: - rm -f sfm ${OBJ} sfm-${VERSION}.tar.gz - -dist: clean - mkdir -p sfm-${VERSION} - cp -R LICENSE Makefile README.md config.def.h config.mk\ - sfm.1 sfm.png termbox.h util.h ${SRC} sfm-${VERSION} - tar -cf sfm-${VERSION}.tar sfm-${VERSION} - gzip sfm-${VERSION}.tar - rm -rf sfm-${VERSION} - -install: sfm - mkdir -p ${DESTDIR}${PREFIX}/bin - cp -f sfm ${DESTDIR}${PREFIX}/bin - chmod 755 ${DESTDIR}${PREFIX}/bin/sfm - mkdir -p ${DESTDIR}${MANPREFIX}/man1 - sed "s/VERSION/${VERSION}/g" < sfm.1 > ${DESTDIR}${MANPREFIX}/man1/sfm.1 - chmod 644 ${DESTDIR}${MANPREFIX}/man1/sfm.1 - -uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/sfm\ - ${DESTDIR}${MANPREFIX}/man1/sfm.1 - -.PHONY: all options clean dist install uninstall -- cgit v1.2.3