File: Makefile

package info (click to toggle)
llgal 0.13.15-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 460 kB
  • ctags: 147
  • sloc: perl: 2,754; makefile: 160; sh: 37; php: 15
file content (11 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: install uninstall

install:
	install -d -m 0755 $(DOCDIR)
	find . -type d -exec install -d -m 0755 $(DOCDIR)/{} \;
	find . -type f -not -name Makefile -exec install -m 0644 {} $(DOCDIR)/{} \;

uninstall:
	find . -type f -not -name Makefile -exec rm -f $(DOCDIR)/{} \;
	find . -depth -type d -exec rmdir $(DOCDIR)/{} \;
	rmdir $(DOCDIR) || true