sogo/UI/Templates/GNUmakefile
Wolfgang Sourdeau a54343e809 Monotone-Parent: 328de23f4c0448aedc1fb6ae6262b7f2d4805837
Monotone-Revision: b513fbfe3b58ede8041ace9c9b5c559e4fa481a5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-09T18:17:06
Monotone-Branch: ca.inverse.sogo
2007-05-09 18:17:06 +00:00

26 lines
396 B
Makefile

# GNUstep makefile
XMLLINT = xmllint
XMLLINT-BIN = $(shell which $(XMLLINT))
ifeq ($(XMLLINT-BIN),)
all ::
@echo Utility \"$(XMLLINT)\" not found. Skipping validation.
else
all :: validate-wox
endif
WOXS = $(shell find . -name '*.wox' -type f)
validate-wox:
for wox in $(WOXS); \
do $(XMLLINT-BIN) --noout $$wox || exit 1; \
done;
install ::
clean ::
distclean :: clean
uninstall ::