source: trunk/lang/perl/Makefile.in @ 1081

Last change on this file since 1081 was 1081, checked in by gah, 15 years ago

fix for perl, ruby bindings; visviewer SendBytes? method sends all data at once

File size: 674 bytes
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11
12INSTALL         = @INSTALL@
13RM              = rm -f
14PERL            = @PERL@
15
16build_dir       = build
17
18all: tmp
19        $(MAKE) -C $(build_dir)
20
21tmp:
22        $(RM) -r $(build_dir)
23        $(INSTALL) -d $(build_dir)
24        cp -p Makefile.PL $(build_dir)/Makefile.PL
25        tar -C $(srcdir) -clf - . | tar -C $(build_dir) -xpf -
26        (cd $(build_dir); $(PERL) Makefile.PL)
27
28install:
29        $(MAKE) -C $(build_dir) install_perl
30
31clean:
32        $(MAKE) -C $(build_dir) clean
33        $(RM) -rf $(build_dir)
34
35distclean: clean
36
Note: See TracBrowser for help on using the repository browser.