diff options
author | jsorg71 <jsorg71> | 2008-04-03 06:24:36 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-04-03 06:24:36 +0000 |
commit | 604a743d7d22046c1d92a4ce81110c4e6edbd8ca (patch) | |
tree | a1805c4980b348890250ea0da238d7979e152746 | |
parent | 4df6aa909e1c0f8626cf1968a6e188779eef7629 (diff) | |
download | xrdp-proprietary-604a743d7d22046c1d92a4ce81110c4e6edbd8ca.tar.gz xrdp-proprietary-604a743d7d22046c1d92a4ce81110c4e6edbd8ca.zip |
target fix
-rw-r--r-- | rdp/Makefile | 4 | ||||
-rw-r--r-- | vnc/Makefile | 4 | ||||
-rw-r--r-- | xup/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/rdp/Makefile b/rdp/Makefile index 28993576..4c059fcd 100644 --- a/rdp/Makefile +++ b/rdp/Makefile @@ -18,9 +18,9 @@ LIBS = -ldl LIBS += -lcrypto CC = gcc -all: rdp +all: librdp.so -rdp: $(RDPOBJ) +librdp.so: $(RDPOBJ) $(CC) $(LDFLAGS) -o librdp.so $(RDPOBJ) $(LIBS) clean: diff --git a/vnc/Makefile b/vnc/Makefile index d3145bc0..102ddf59 100644 --- a/vnc/Makefile +++ b/vnc/Makefile @@ -16,9 +16,9 @@ LDFLAGS = -shared LIBS = -ldl CC = gcc -all: vnc +all: libvnc.so -vnc: $(VNCOBJ) +libvnc.so: $(VNCOBJ) $(CC) $(LDFLAGS) -o libvnc.so $(VNCOBJ) $(LIBS) clean: diff --git a/xup/Makefile b/xup/Makefile index 3bdf3bf5..503d49b7 100644 --- a/xup/Makefile +++ b/xup/Makefile @@ -17,9 +17,9 @@ LDFLAGS = -shared LIBS = -ldl CC = gcc -all: xup +all: libxup.so -xup: $(XUPOBJ) +libxup.so: $(XUPOBJ) $(CC) $(LDFLAGS) -o libxup.so $(XUPOBJ) $(LIBS) clean: |