diff options
author | June McEnroe <june@causal.agency> | 2022-05-06 17:31:26 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-05-06 17:32:16 -0400 |
commit | 6578b2dba6d959a84558b41b2c9cd6ad8dbcf761 (patch) | |
tree | a4e5f271f9b32e47e974230f42a4d4b294923a88 | |
parent | Update SQLite to 3.38.1 (diff) | |
download | scooper-6578b2dba6d959a84558b41b2c9cd6ad8dbcf761.tar.gz scooper-6578b2dba6d959a84558b41b2c9cd6ad8dbcf761.zip |
Don't rebuild sqlite3 when server.h changes
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 8fdd295..7fd2bde 100644 --- a/Makefile +++ b/Makefile @@ -44,9 +44,9 @@ all: scooper scooper: ${OBJS} ${CC} ${STATIC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ -${OBJS}: server.h sqlite3.h +contexts.o events.o html.o networks.o search.o server.o: server.h sqlite3.h -sqlite3.o: sqlite3.c +sqlite3.o: sqlite3.c sqlite3.h ${CC} ${CFLAGS} ${CFLAGS.sqlite3} -c $< -o $@ css.c: css.sh default.css color.css |