summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/Makefile.am10
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index b936e77..a77fa15 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -10,10 +10,18 @@ if WITH_TIGHTVNC_FILETRANSFER
FILETRANSFER=filetransfer
endif
+if HAVE_LIBPTHREAD
+BLOOPTEST=blooptest
+endif
+
noinst_HEADERS=radon.h
noinst_PROGRAMS=example pnmshow regiontest pnmshow24 fontsel \
vncev storepasswd colourmaptest simple simple15 $(MAC) \
- $(FILETRANSFER) backchannel
+ $(FILETRANSFER) backchannel $(BLOOPTEST)
+
+blooptest.o: example.c
+ $(CC) $(AM_CFLAGS) $(CFLAGS) -c -o $@ $<
+