this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup utils/Makefile

+6 -7
+6 -7
utils/Makefile
··· 1 - dir-colors: 2 - $(LN) dir_colors ${HOME}/.dir_colors 1 + UTILS = dir_colors ctags 3 2 4 - ctags: 5 - $(LN) ctags ${HOME}/.ctags 3 + $(UTILS): 4 + $(LN) $@ ${HOME}/.$@ 6 5 7 - install: dir-colors ctags 6 + install: dir_colors ctags 8 7 9 8 clear: 10 - rm ${HOME}/.dir_colors ${HOME}/.ctags 9 + for util in $(UTILS); do rm $$util; done 11 10 12 - .PHONY: install clear ctags dir-colors 11 + .PHONY: install clear ctags dir_colors