diff options
author | dscho <dscho> | 2001-10-13 15:14:27 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-10-13 15:14:27 +0000 |
commit | 9f07e222f828b7b2bf2775b9dc8cd18b22a829c1 (patch) | |
tree | 96d8ade36b70799217d3cfd9fb89193c2c1be7a0 /Makefile | |
parent | ac263ce9aa1561847427b71298861594d8623e61 (diff) | |
download | libvncserver-9f07e222f828b7b2bf2775b9dc8cd18b22a829c1.zip libvncserver-9f07e222f828b7b2bf2775b9dc8cd18b22a829c1.tar.gz |
rfbSelectBox, consoleFonts, too many changes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -2,8 +2,8 @@ INCLUDES=-I. VNCSERVERLIB=-L. -lvncserver -L/usr/local/lib -lz -ljpeg # Uncomment these two lines to enable use of PThreads -PTHREADDEF = -DHAVE_PTHREADS -PTHREADLIB = -lpthread +#PTHREADDEF = -DHAVE_PTHREADS +#PTHREADLIB = -lpthread # Comment the following line to disable the use of 3 Bytes/Pixel. # The code for 3 Bytes/Pixel is not very efficient! @@ -23,11 +23,11 @@ OSX_LIBS = -framework ApplicationServices -framework Carbon SOURCES=main.c rfbserver.c sraRegion.c auth.c sockets.c \ stats.c corre.c hextile.c rre.c translate.c cutpaste.c \ zlib.c tight.c httpd.c cursor.c font.c \ - d3des.c vncauth.c + draw.c selbox.c d3des.c vncauth.c OBJS=main.o rfbserver.o sraRegion.o auth.o sockets.o \ stats.o corre.o hextile.o rre.o translate.o cutpaste.o \ zlib.o tight.o httpd.o cursor.o font.o \ - d3des.o vncauth.o + draw.o selbox.o d3des.o vncauth.o INSTALLHEADER=rfb.h rfbproto.h sraRegion.h keysym.h all: example pnmshow storepasswd @@ -73,6 +73,9 @@ blooptest.o: example.c rfb.h pnmshow24: pnmshow24.o libvncserver.a $(CC) -o pnmshow24 pnmshow24.o $(LIBS) +fontsel: fontsel.o libvncserver.a + $(CC) -o fontsel fontsel.o -L. -lvncserver -lz -ljpeg + clean: rm -f $(OBJS) *~ core "#"* *.bak *.orig storepasswd.o \ mac.o example.o pnmshow.o pnmshow24.o sratest.o \ |