You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
678 B
38 lines
678 B
# libvnc makefile
|
|
|
|
VNCOBJ = vnc.o os_calls.o d3des.o
|
|
|
|
DESTDIR = /usr/local/xrdp
|
|
CFGDIR = /etc/xrdp
|
|
PIDDIR = /var/run
|
|
MANDIR = /usr/local/man
|
|
DOCDIR = /usr/doc/xrdp
|
|
|
|
DEFINES =
|
|
|
|
VNCLIB = libvnc.dylib
|
|
|
|
CFLAGS = -Wall -O2 -I../common -fPIC $(DEFINES)
|
|
C_OS_FLAGS = $(CFLAGS) -c -g
|
|
LDFLAGS = -dynamiclib -Wl,-flat_namespace -Wl,-undefined -Wl,suppress
|
|
LIBS =
|
|
CC = gcc
|
|
|
|
all: $(VNCLIB)
|
|
|
|
$(VNCLIB): $(VNCOBJ)
|
|
$(CC) $(LDFLAGS) -o $(VNCLIB) $(VNCOBJ) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(VNCOBJ) $(VNCLIB)
|
|
|
|
os_calls.o: ../common/os_calls.c
|
|
$(CC) $(C_OS_FLAGS) ../common/os_calls.c
|
|
|
|
d3des.o: ../common/d3des.c
|
|
$(CC) $(C_OS_FLAGS) ../common/d3des.c
|
|
|
|
install:
|
|
install $(VNCLIB) $(DESTDIR)/$(VNCLIB)
|
|
|