mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
The new schema was generated with sqlacodegen and then manually adjusted to fit schema/aur-schema.sql faithfully, both in the organisation of the code and in the SQL generated by SQLAlchemy. Initializing the database now requires the new tool aurweb.initdb. References to aur-schema.sql have been updated and the old schema dropped. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
11 lines
181 B
Makefile
11 lines
181 B
Makefile
T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
|
|
|
|
check: $(T)
|
|
|
|
clean:
|
|
$(RM) -r test-results/
|
|
|
|
$(T):
|
|
@echo "*** $@ ***"; $(SHELL) $@
|
|
|
|
.PHONY: check $(FOREIGN_TARGETS) clean $(T)
|