notify.py: Do not add stray newlines
[aur.git] / schema / Makefile
blob62d085676b059355b85fa82a3a6411be49cf7de1
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 -e 's/ MySQL / SQLite /' \
7 $< >$@
9 clean:
10 rm -rf aur-schema-sqlite.sql
12 .PHONY: clean