diff options
author | dscho <dscho> | 2001-09-13 09:49:46 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-09-13 09:49:46 +0000 |
commit | 8c599f7005877a4d26a9b675cf6f4da2c1c061f0 (patch) | |
tree | bf87183f4f2aaa386caa2e625a5f2569ecfaa22d /Makefile | |
parent | 2634379912ea972dedc0d389049945716c90c0db (diff) | |
download | libvncserver-8c599f7005877a4d26a9b675cf6f4da2c1c061f0.zip libvncserver-8c599f7005877a4d26a9b675cf6f4da2c1c061f0.tar.gz |
Now you can write something in addition to mouse movements ...
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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) |