diff options
author | June McEnroe <june@causal.agency> | 2021-05-07 23:58:38 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-05-07 23:58:38 -0400 |
commit | 12d098b20ecb3ff101957d525ff41a979fe89f68 (patch) | |
tree | a9b3f72658795d37140f1e3468298e9e2ca607e4 /Makefile | |
parent | Add missing static declarations in html.c (diff) | |
download | scooper-12d098b20ecb3ff101957d525ff41a979fe89f68.tar.gz scooper-12d098b20ecb3ff101957d525ff41a979fe89f68.zip |
Create a database with litterbox for test
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 4cd3419..271d28f 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,8 @@ LDADD.kcgi = -lkcgi LDADD.kcgi-html = -lkcgihtml LDADD.sqlite3 = -lsqlite3 -TEST_DB = ~/.local/share/litterbox/litterbox.sqlite +LITTERBOX = litterbox +TEST_DB = litterbox.sqlite -include config.mk @@ -36,8 +37,10 @@ css.c: css.sh default.css color.css test: .test .test: scooper + ${LITTERBOX} -i -d ${TEST_DB} ./scooper -c ${TEST_DB} - touch .test + rm ${TEST_DB} ${TEST_DB}-* + touch $@ tags: *.[ch] ctags -w *.[ch] |