Skip to content

Commit

Permalink
Some more update to the distribution setup.
Browse files Browse the repository at this point in the history
mkende committed May 6, 2024
1 parent 7cca17e commit 7a1e2ee
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
/MANIFEST
/MANIFEST.bak
/blib/
/build/
/cover_db/
/local/
/pm_to_blib
@@ -27,5 +28,3 @@ __pycache__
/nytprof.out
/nytprof/
*.code-workspace
build/
pod2htmd.tmp
2 changes: 1 addition & 1 deletion MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
^MANIFEST\.SKIP$
^README(\..*)?$
^blib/
^build/
^cover_db/
^cpanfile\.snapshot$
^dist_setup\.conf$
@@ -37,6 +38,5 @@
^.*\.tests$
^nytprof.out$
^nytprof/
^build/
^.*\.code-workspace$
^Syntax\.md$
8 changes: 7 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -82,11 +82,17 @@ spelling:
alltest: export EXTENDED_TESTING = 1
alltest: test
clean:: clean_coverdb
clean:: clean_coverdb clean_build clean_pod2html
clean_coverdb:
\trm -fr cover_db
clean_build:
\trm -fr build
clean_pod2html:
\trm -fr pod2html
PM_HTML := \$(patsubst %.pm, pod2html/%.html, \$(ALL_PM))
EXE_HTML := \$(patsubst %, pod2html/%.html, \$(ALL_EXE))
pod2html: \$(PM_HTML) \$(EXE_HTML)

0 comments on commit 7a1e2ee

Please sign in to comment.