Document new git-serve commands
[aur.git] / schema / Makefile
blobe0448adde250a36e7504c08f5ded9affde8fc860
1 aur-schema-sqlite.sql: aur-schema.sql
2 sed \
3 -e 's/ ENGINE = InnoDB//' \
4 -e 's/ [A-Z]* UNSIGNED NOT NULL AUTO_INCREMENT/ INTEGER NOT NULL/' \
5 -e 's/([0-9, ]*) UNSIGNED / UNSIGNED /' \
6 $< >$@
8 clean:
9 rm -rf aur-schema-sqlite.sql
11 .PHONY: clean