summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordscho <dscho>2001-09-13 09:49:46 +0000
committerdscho <dscho>2001-09-13 09:49:46 +0000
commit8c599f7005877a4d26a9b675cf6f4da2c1c061f0 (patch)
treebf87183f4f2aaa386caa2e625a5f2569ecfaa22d /Makefile
parent2634379912ea972dedc0d389049945716c90c0db (diff)
downloadlibtdevnc-8c599f70.tar.gz
libtdevnc-8c599f70.zip
Now you can write something in addition to mouse movements ...
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 07fcb11..91e6a6c 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ VNCSERVERLIB=-L. -lvncserver -lz -ljpeg
# These two lines enable useage of PThreads
#CFLAGS += -DHAVE_PTHREADS
-VNCSERVERLIB += -lpthread
+#VNCSERVERLIB += -lpthread
LIBS=$(LDFLAGS) $(VNCSERVERLIB) $(VNCAUTHLIB)
@@ -17,7 +17,6 @@ LIBS=$(LDFLAGS) $(VNCSERVERLIB) $(VNCAUTHLIB)
OSX_LIBS = -framework ApplicationServices -framework Carbon
# for Example
-PTHREAD_LIBS = -lpthread
SOURCES=main.c rfbserver.c miregion.c auth.c sockets.c xalloc.c \
stats.c corre.c hextile.c rre.c translate.c cutpaste.c \
@@ -39,10 +38,10 @@ libvncserver.a: $(OBJS)
$(RANLIB) $@
example: example.o libvncauth/libvncauth.a libvncserver.a
- $(CC) -o example example.o $(LIBS) $(PTHREAD_LIBS)
+ $(CC) -o example example.o $(LIBS)
pnmshow: pnmshow.o libvncauth/libvncauth.a libvncserver.a
- $(CC) -o pnmshow pnmshow.o $(LIBS) $(PTHREAD_LIBS)
+ $(CC) -o pnmshow pnmshow.o $(LIBS)
OSXvnc-server: mac.o libvncauth/libvncauth.a libvncserver.a
$(CC) -o OSXvnc-server mac.o $(LIBS) $(OSX_LIBS)