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.
29 lines
471 B
29 lines
471 B
# libxup makefile
|
|
|
|
XUPOBJ = os_calls.o xup.o
|
|
|
|
LIBDIR = /usr/local/lib/xrdp
|
|
|
|
DEFINES =
|
|
|
|
CFLAGS = -Wall -O2 -I../common -fPIC $(DEFINES)
|
|
#CFLAGS += -DXRDP_DEBUG
|
|
C_OS_FLAGS = $(CFLAGS) -c
|
|
LDFLAGS = -shared
|
|
LIBS = -ldl
|
|
CC = gcc
|
|
|
|
all: libxup.so
|
|
|
|
libxup.so: $(XUPOBJ)
|
|
$(CC) $(LDFLAGS) -o libxup.so $(XUPOBJ) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(XUPOBJ) libxup.so
|
|
|
|
os_calls.o: ../common/os_calls.c
|
|
$(CC) $(C_OS_FLAGS) ../common/os_calls.c
|
|
|
|
install:
|
|
install libxup.so $(LIBDIR)/libxup.so
|