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