1# post processing
2
3validate-wox:
4#	xmllint --noout *.wox
5
6before-all :: validate-wox
7
8
9ifneq ($(GNUSTEP_BUILD_DIR),)
10after-all ::
11	@(cp bundle-info.plist \
12	  $(GNUSTEP_BUILD_DIR)/$(BUNDLE_NAME)$(BUNDLE_EXTENSION))
13else
14after-all ::
15	@(cd $(BUNDLE_NAME)$(BUNDLE_EXTENSION);\
16	  cp ../bundle-info.plist .)
17endif
18