diff options
author | June McEnroe <june@causal.agency> | 2020-07-24 11:42:40 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-24 11:42:40 -0400 |
commit | 049ad2666299d572c5ed4a2b1614e6c475630143 (patch) | |
tree | 3c600b62fed8b4f67fdfd5bd406f545b5df5b7b0 /Makefile | |
parent | Add scooper to README (diff) | |
download | litterbox-049ad2666299d572c5ed4a2b1614e6c475630143.tar.gz litterbox-049ad2666299d572c5ed4a2b1614e6c475630143.zip |
Rewrite configure script for all platforms, add OpenBSD
Diffstat (limited to '')
-rw-r--r-- | Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile index 85eadc2..19dc3b1 100644 --- a/Makefile +++ b/Makefile @@ -2,17 +2,12 @@ PREFIX ?= /usr/local MANDIR ?= ${PREFIX}/share/man ETCDIR ?= ${PREFIX}/etc -CFLAGS += -I${PREFIX}/include -LDFLAGS += -L${PREFIX}/lib - CFLAGS += -std=c11 -Wall -Wextra -Wpedantic -LDLIBS = -lsqlite3 -LDLIBS.litterbox = -lsqlite3 -ltls +LDLIBS = -lsqlite3 -ltls BINS = litterbox scoop unscoop MANS = ${BINS:=.1} RCS = rc.d/litterbox -INSTALLS = install-rcs -include config.mk @@ -24,7 +19,7 @@ dev: tags all test all: ${BINS} litterbox: ${OBJS.litterbox} - ${CC} ${LDFLAGS} ${OBJS.$@} ${LDLIBS.$@} -o $@ + ${CC} ${LDFLAGS} ${OBJS.$@} ${LDLIBS} -o $@ .o: ${CC} ${LDFLAGS} $< ${LDLIBS} -o $@ |