File: Makefile.in

package info (click to toggle)
plucker 1.8-34
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 21,340 kB
  • sloc: ansic: 47,691; cpp: 42,310; python: 17,043; makefile: 1,521; perl: 1,492; pascal: 1,123; sh: 474; sed: 64; java: 13; csh: 6
file content (59 lines) | stat: -rw-r--r-- 1,456 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# $Id: Makefile.in,v 1.4 2003/08/03 14:07:01 nordstrom Exp $
#

SHELL           =   @SHELL@

top_builddir    =   ..
subdir          =   parser
srcdir          =   @srcdir@
VPATH           =   @srcdir@

DESTDIR         =

PYTHONDIR       =   python
DEFAULTSDIR     =   defaults

DATADIR         =   $(DESTDIR)@PLUCKERDIR@

MKINSTALLDIRS   =   $(top_builddir)/mkinstalldirs

all: pyplucker

Makefile: Makefile.in $(top_builddir)/config.status
	cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status

pyplucker:
	cd $(PYTHONDIR) ; $(MAKE)

install: install-data install-pyplucker

install-data:
	$(MKINSTALLDIRS) $(DATADIR)/config
	cp $(DEFAULTSDIR)/home.html $(DATADIR)/config
	cp $(DEFAULTSDIR)/exclusionlist.txt $(DATADIR)/config
	cp $(DEFAULTSDIR)/pluckerrc.sample $(DATADIR)/config

install-pyplucker: pyplucker
	cd $(PYTHONDIR) ; $(MAKE) install

clean-recursive:
	cd $(PYTHONDIR) ; $(MAKE) clean

distclean-recursive:
	cd $(PYTHONDIR) ; $(MAKE) distclean

maintainer-clean-recursive:
	cd $(PYTHONDIR) ; $(MAKE) maintainer-clean

clean: clean-recursive

distclean: clean distclean-recursive
	rm -f Makefile

maintainer-clean: distclean maintainer-clean-recursive
	@echo "------------------------------------------------------------"
	@echo "This command is intended for maintainers to use..."
	@echo "it deletes files that may require special tools to rebuild."
	@echo "------------------------------------------------------------"