Skip to content

Commit

Permalink
potion-s: add -lsqlite3
Browse files Browse the repository at this point in the history
we should really start using LIBS for that.
But sqlite3 is only needed for database and potion-s, nothing else.
  • Loading branch information
Reini Urban committed Nov 10, 2015
1 parent 97b0815 commit f7c451e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ bin/potion-s${EXE}: lib/libpotion.a ${PLIBS_OBJS}
@${ECHO} LINK $@
@${CC} -c ${CFLAGS} ${INCS} -DSTATIC -o core/potion.os core/potion.c
@${CC} ${CFLAGS} ${LDFLAGS} core/potion.os -o $@ ${PLIBS_OBJS} \
lib/libpotion.a ${LIBPTH} ${RPATH} ${EXTLIBS} ${LIBS}
lib/libpotion.a ${LIBPTH} ${RPATH} ${EXTLIBS} ${LIBS} -lsqlite3
@if [ "${DEBUG}" != "1" ]; then ${ECHO} STRIP $@; ${STRIP} $@; fi
@if [ "${SANDBOX}" = "1" ]; then rm bin/potion${EXE}; cd bin; ln -s potion-s${EXE} potion${EXE}; cd ..; fi

Expand Down

0 comments on commit f7c451e

Please sign in to comment.