aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: ea7c41bdd2545ee4b238463894d8658bc5cb24ac (plain) (tree)
1
2
3
4
5
6
7
       
 


                      

    




                                                 
                                             
                                                   



                                                             
 

          

                                   
.POSIX:

CONFIGFILE = config.mk
include $(CONFIGFILE)


all:
	@:

install:
	mkdir -p -- "$(DESTDIR)$(PREFIX)/bin"
	mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man1"
	cp -- blue "$(DESTDIR)$(PREFIX)/bin/"
	cp -- blue.1 "$(DESTDIR)$(MANPREFIX)/man1/"

uninstall:
	-rm -f -- "$(DESTDIR)$(PREFIX)/bin/blue"
	-rm -f -- blue.1 "$(DESTDIR)$(MANPREFIX)/man1/blue.1"

clean:
	@:

.PHONY: all install uninstall clean