8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
12 lines
196 B
Makefile
12 lines
196 B
Makefile
prefix=/usr/local/bin
|
|
|
|
default: build
|
|
|
|
build:
|
|
@echo "Nothing to build. Use make install"
|
|
|
|
install: intemp.sh
|
|
install intemp.sh $(DESTDIR)$(prefix)
|
|
|
|
uninstall:
|
|
-rm $(DESTDIR)$(prefix)/intemp.sh
|