added buildcheck/installcheck
This commit is contained in:
parent
64140c7f69
commit
df62eae454
3 changed files with 25 additions and 0 deletions
|
|
@ -19,3 +19,12 @@ datafiles = multilib-help.pd multilib-meta.pd
|
||||||
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
|
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
|
||||||
PDLIBBUILDER_DIR=../..
|
PDLIBBUILDER_DIR=../..
|
||||||
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
||||||
|
|
||||||
|
|
||||||
|
# simplistic tests whether all expected files have been produced/installed
|
||||||
|
buildcheck: all
|
||||||
|
test -e multilib.$(extension)
|
||||||
|
installcheck: install
|
||||||
|
test -e $(installpath)/multilib.$(extension)
|
||||||
|
test -e $(installpath)/multilib-help.pd
|
||||||
|
test -e $(installpath)/multilib-meta.pd
|
||||||
|
|
|
||||||
|
|
@ -14,3 +14,13 @@ datafiles = multiple-help.pd multiple-meta.pd
|
||||||
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
|
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
|
||||||
PDLIBBUILDER_DIR=../..
|
PDLIBBUILDER_DIR=../..
|
||||||
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
||||||
|
|
||||||
|
# simplistic tests whether all expected files have been produced/installed
|
||||||
|
buildcheck: all
|
||||||
|
test -e multipleA.$(extension)
|
||||||
|
test -e multipleB.$(extension)
|
||||||
|
installcheck: install
|
||||||
|
test -e $(installpath)/multipleA.$(extension)
|
||||||
|
test -e $(installpath)/multipleB.$(extension)
|
||||||
|
test -e $(installpath)/multiple-help.pd
|
||||||
|
test -e $(installpath)/multiple-meta.pd
|
||||||
|
|
|
||||||
|
|
@ -14,3 +14,9 @@ datafiles = single-help.pd single-meta.pd
|
||||||
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
|
# include Makefile.pdlibbuilder from submodule directory 'pd-lib-builder'
|
||||||
PDLIBBUILDER_DIR=../..
|
PDLIBBUILDER_DIR=../..
|
||||||
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
include $(PDLIBBUILDER_DIR)/Makefile.pdlibbuilder
|
||||||
|
|
||||||
|
# simplistic tests whether all expected files have been produced/installed
|
||||||
|
buildcheck: all
|
||||||
|
test -e single.$(extension)
|
||||||
|
installcheck: install
|
||||||
|
test -e $(installpath)/single.$(extension)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue