Skip to content

Commit

Permalink
Add a Makefile for development tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed May 4, 2023
1 parent 918652f commit 1e7d314
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
SHELL := bash

ZILD := \
clean \
cpan cpanshell \
dist distdir distshell disttest \
install release update \

default:

.PHONY: test
test: distdir
( \
cd YAML-LibYAML-* && \
perl Makefile.PL && \
make test \
)

$(ZILD):
zild $@

0 comments on commit 1e7d314

Please sign in to comment.