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: diff:
perl Build --makefile_env_macros 1 diff perl Build --makefile_env_macros 1 diff


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


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


Expand Down Expand Up @@ -81,6 +80,10 @@ html:
install: install:
perl Build --makefile_env_macros 1 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 #: Make a MANIFEST file
manifest: manifest:
perl Build --makefile_env_macros 1 manifest perl Build --makefile_env_macros 1 manifest
Expand Down Expand Up @@ -115,6 +118,11 @@ test:
testcover: testcover:
perl Build --makefile_env_macros 1 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: testdb:
perl Build --makefile_env_macros 1 testdb perl Build --makefile_env_macros 1 testdb


Expand Down

0 comments on commit ea91ea5

Please sign in to comment.