mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-31 11:17:17 +00:00
Monotone-Revision: b17d302eb00b85fc88d646f3ca2f85130bf42255 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-05-03T15:13:16 Monotone-Branch: ca.inverse.sogo
20 lines
222 B
Makefile
20 lines
222 B
Makefile
# GNUstep makefile
|
|
|
|
XMLLINT = $(shell which xmllint)
|
|
ifeq ($(XMLLIST),)
|
|
XMLLINT = /bin/true
|
|
endif
|
|
|
|
validate-wox:
|
|
$(XMLLINT) --noout *.wox
|
|
|
|
all :: validate-wox
|
|
|
|
install :: all
|
|
|
|
clean ::
|
|
|
|
distclean :: clean
|
|
|
|
uninstall ::
|