summaryrefslogtreecommitdiff
path: root/tools/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/makefile')
-rw-r--r--tools/makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/makefile b/tools/makefile
index 7d0afbf..8b31fdc 100644
--- a/tools/makefile
+++ b/tools/makefile
@@ -20,8 +20,8 @@ CFLAGS = -std=gnu++0x -Wall -g -I $(HOME)/lib/include
.SECONDARY : # do not remove any intermediate files
# sources for main programs that go in /var/qmail/bin
-qmain = pido.c hi-q.c skrewt.c hi-test.c mail-scan.c \
- greylist.c wripper.c ward.c
+qmain = pido.c hi-q.c skrewt.c hi-test.c mail-scan.c greylist.c \
+ wripper.c spf_example.c ward.c
qprogs = $(qmain:%.c=%)
@@ -46,6 +46,9 @@ beware_other = checkpassword.c spamc.c
all: $(qprogs) $(moreprogs) fixown2 ward
+spf_example : spf_example.o sepofra.o utils.o
+ $(CXX) $^ -lspf2 -o $@
+
show:
: --- $(qprogs) +++ $(moreprogs)