summaryrefslogtreecommitdiffstats
path: root/schema/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'schema/Makefile')
-rw-r--r--schema/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/schema/Makefile b/schema/Makefile
deleted file mode 100644
index 62d08567..00000000
--- a/schema/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-aur-schema-sqlite.sql: aur-schema.sql
- sed \
- -e 's/ ENGINE = InnoDB//' \
- -e 's/ [A-Z]* UNSIGNED NOT NULL AUTO_INCREMENT/ INTEGER NOT NULL/' \
- -e 's/([0-9, ]*) UNSIGNED / UNSIGNED /' \
- -e 's/ MySQL / SQLite /' \
- $< >$@
-
-clean:
- rm -rf aur-schema-sqlite.sql
-
-.PHONY: clean