diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-12-04 02:45:11 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-12-04 02:45:11 +0100 |
commit | 1118775bda217308f2ccbdf27ed29e9bc443cfea (patch) | |
tree | 7d12171b95b5afc10e537417d2f36893ff865fcc /Makefile | |
parent | Makefile ready for release (diff) | |
download | lowbat-gnu-1118775bda217308f2ccbdf27ed29e9bc443cfea.tar.gz lowbat-gnu-1118775bda217308f2ccbdf27ed29e9bc443cfea.tar.bz2 lowbat-gnu-1118775bda217308f2ccbdf27ed29e9bc443cfea.tar.xz lowbat-gnu-1118775bda217308f2ccbdf27ed29e9bc443cfea.tar.zst lowbat-gnu-1118775bda217308f2ccbdf27ed29e9bc443cfea.zip |
Makefile update
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -65,6 +65,14 @@ ${NAME}: ${OBJS} #------------------------------------------------------------------------------# all: ${NAME} #------------------------------------------------------------------------------# +clean: + ${RM} ${OBJS_DIR} +#------------------------------------------------------------------------------# +fclean: clean + ${RM} ${TRGT_DIR} +#------------------------------------------------------------------------------# +re: fclean all +#------------------------------------------------------------------------------# install: all mkdir -p $(DESTDIR)$(PREFIX)/bin cp -f bin/lowbat $(DESTDIR)$(PREFIX)/bin/ @@ -76,13 +84,5 @@ uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/lowbat rm -f $(DESTDIR)$(MANPREFIX)/man1/lowbat.1 #------------------------------------------------------------------------------# -clean: - ${RM} ${OBJS_DIR} -#------------------------------------------------------------------------------# -fclean: clean - ${RM} ${TRGT_DIR} -#------------------------------------------------------------------------------# -re: fclean all -#------------------------------------------------------------------------------# .PHONY: all lowbat clean fclean re install uninstall #==================================== EOF =====================================# |