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.
16 lines
294 B
16 lines
294 B
12 years ago
|
|
||
|
|
||
|
PULSE_DIR=/home/jay/pulseaudio-0.9.22
|
||
|
|
||
|
OBJS = module-xrdp-sink.o
|
||
|
|
||
|
CFLAGS = -Wall -O2 -I$(PULSE_DIR) -I$(PULSE_DIR)/src -DHAVE_CONFIG_H
|
||
|
|
||
|
all: module-xrdp-sink.so
|
||
|
|
||
|
module-xrdp-sink.so: $(OBJS)
|
||
|
$(CC) $(LDFLAGS) -shared -o module-xrdp-sink.so $(OBJS)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) module-xrdp-sink.so
|