File: Makefile.in

package info (click to toggle)
scmxx 0.7.5-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,208 kB
  • ctags: 580
  • sloc: ansic: 7,963; sh: 2,789; makefile: 197
file content (19 lines) | stat: -rw-r--r-- 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SHELL=@SHELL@
prefix=@prefix@
mandir=@mandir@
INSTALL=@INSTALL@
PACKAGE_NAME=@PACKAGE_NAME@

.PHONY:install
install:
	$(INSTALL) -d $(DESTDIR)$(mandir)/man1
	$(INSTALL) scmxx.1  $(DESTDIR)$(mandir)/man1/$(PACKAGE_NAME).1
	for i in scmxx.??.1; do \
	  $(INSTALL) -d $(DESTDIR)$(mandir)/`echo $$i|cut -f 2 -d.`/man1; \
	  $(INSTALL) $$i  $(DESTDIR)$(mandir)/`echo $$i|cut -f 2 -d.`/man1/$(PACKAGE_NAME).1; \
	done

.PHONY:uninstall
uninstall:
	-rm -f  $(DESTDIR)$(mandir)/man1/$(PACKAGE_NAME).1
	-rm -f  $(DESTDIR)$(mandir)/*/man1/$(PACKAGE_NAME).1;