File: Makefile.am

package info (click to toggle)
adesklets 0.6.1-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,044 kB
  • ctags: 1,325
  • sloc: ansic: 5,939; sh: 3,983; python: 2,344; perl: 333; makefile: 211; yacc: 80; lex: 42
file content (25 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (2)
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
AUTOMAKE_OPTIONS = 1.5

EXTRA_DIST=adesklets.pm MANIFEST

all-am: perl-compile

mostlyclean-am:
	-test -f makefile.perl && $(MAKE) -f makefile.perl veryclean
	-rm *.bak *.tmp

if PERL_SUPPORT
adesklets.pm: ../enums ../prototypes 
	./updateproto.pl adesklets.pm $+

makefile.perl: Makefile.PL
	$(PERL) $<

perl-compile: makefile.perl
	$(MAKE) -f $<

install-data-local: makefile.perl
	$(MAKE) -f makefile.perl install DESTDIR=$(DESTDIR)
else
perl-compile:
endif