eips 0.2.4

Efficient intention-preserving sequence CRDT
Documentation
# Copyright (C) 2024-2025 taylor.fish <contact@taylor.fish>
#
# This file is part of Eips.
#
# Eips is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Eips is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General
# Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with Eips. If not, see <https://www.gnu.org/licenses/>.
#
# The Eips Lesser Network Exception and Eips Peer-to-Peer Exception
# also apply to Eips. These exceptions are additional permissions
# under section 7 of the GNU Affero General Public License, version 3.
# You should have received a copy of these exceptions; if not, see
# <https://codeberg.org/taylordotfish/eips-exceptions>.

.PHONY: all
all: ../README.md package-readme.md ../src/lib.md

SOURCES = README.m4 ../Cargo.toml

../README.md: $(SOURCES)
	m4 $< > $@

package-readme.md: $(SOURCES)
	m4 -DRUST $< > $@

../src/lib.md: $(SOURCES)
	m4 -DRUST -DCRATE $< > $@

.DELETE_ON_ERROR: