wendy

inotify based node watcher
git clone git://git.2f30.org/wendy
Log | Files | Refs | README | LICENSE

Makefile (368B)


      1 include config.mk
      2 
      3 .PHONY: clean install uninstall
      4 
      5 wendy: wendy.o
      6 
      7 install: wendy wendy.1
      8 	mkdir -p $(DESTDIR)$(PREFIX)/bin
      9 	mkdir -p $(DESTDIR)$(MANPREFIX)/man1
     10 	cp wendy $(DESTDIR)$(PREFIX)/bin/wendy
     11 	cp wendy.1 $(DESTDIR)$(MANPREFIX)/man1/wendy.1
     12 
     13 uninstall:
     14 	rm -f $(DESTDIR)$(PREFIX)/bin/wendy
     15 	rm -f $(DESTDIR)$(MANPREFIX)/man1/wendy.1
     16 
     17 clean:
     18 	rm -f wendy *.o