Skip to content

Commit

Permalink
Add installdeps target
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Bernstein committed Nov 13, 2011
1 parent 41a274c commit ea91ea5
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Makefile
Expand Up @@ -40,11 +40,10 @@ config_data:
diff:
perl Build --makefile_env_macros 1 diff

#: Create distrubution tarball
#: Create distribution tarball
dist:
perl Build --makefile_env_macros 1 dist

#: "make dist" and check created tarball for common problems
distcheck:
perl Build --makefile_env_macros 1 distcheck

Expand Down Expand Up @@ -81,6 +80,10 @@ html:
install:
perl Build --makefile_env_macros 1 install

#: Install other Perl packages that this package needs
installdeps:
perl Build --makefile_env_macros 1 installdeps

#: Make a MANIFEST file
manifest:
perl Build --makefile_env_macros 1 manifest
Expand Down Expand Up @@ -115,6 +118,11 @@ test:
testcover:
perl Build --makefile_env_macros 1 testcover

#:Create a log file from the individual commits
ChangeLog:
git log --pretty --numstat --summary | git2cl > $@

#: Calling perl debugger (perldb) on each test
testdb:
perl Build --makefile_env_macros 1 testdb

Expand Down

0 comments on commit ea91ea5

Please sign in to comment.