Makefile 196 B

12345678910111213
  1. prefix=/usr/local/bin
  2. default: build
  3. build:
  4. @echo "Nothing to build. Use make install"
  5. install: intemp.sh
  6. install intemp.sh $(DESTDIR)$(prefix)
  7. uninstall:
  8. -rm $(DESTDIR)$(prefix)/intemp.sh