File: Makefile

package info (click to toggle)
wput 0.5-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 640 kB
  • ctags: 478
  • sloc: ansic: 5,122; sh: 2,545; makefile: 95
file content (22 lines) | stat: -rw-r--r-- 605 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#wput makefile
prefix      = /usr/local
mandir	    = $(prefix)/man/man1
exec_prefix = ${prefix}
bindir=${exec_prefix}/bin

all clean win-clean: 
	cd src && $(MAKE) $@
install: all
	cp wput $(bindir)
	cp doc/wput.1.gz $(mandir) 
	@echo "----------------"
	@echo "Wput installed. See 'wput -h' or 'man wput' for usage information."
	@echo "Further documentation is located in the doc/USAGE.* files."
	@echo 
	@echo "Wput is not perfect, so please report any bugs you notice (see BUGS-section"
	@echo "in the manpage)."
	@echo "----------------"
uninstall:
	rm -f $(bindir)/wput
	rm -f $(mandir)/wput.1.gz