/[rdesktop]/jpeg/seamlessrdp/trunk/ServerExe/Makefile
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /jpeg/seamlessrdp/trunk/ServerExe/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1412 - (show annotations)
Mon Jun 18 11:59:38 2007 UTC (17 years ago) by ossman_
Original Path: sourceforge.net/trunk/seamlessrdp/ServerExe/Makefile
File size: 610 byte(s)
Add support for transferring window icons.

1
2 #
3 # MinGW makefile
4 #
5
6 CC=gcc
7 CFLAGS=-Wall
8
9 .SUFFIXES:
10
11 default: seamlessrdp.zip
12
13 seamlessrdp.zip: seamlessrdpshell.exe seamlessrdp.dll vchannel.dll
14 -rm $@
15 zip $@ $^
16
17 seamlessrdpshell.exe: main.c vchannel.dll
18 $(CC) $(CFLAGS) -mwindows -o $@ $^ -lwtsapi32
19
20 vchannel.dll: vchannel.c
21 $(CC) $(CFLAGS) -shared -o $@ $^ -lwtsapi32
22
23 seamlessrdp.dll: HookDll/seamlessrdp.dll
24 cp $^ $@
25
26 HookDll/seamlessrdp.dll: HookDll/hookdll.c vchannel.dll
27 $(CC) $(CFLAGS) -shared -o $@ $^ -lgdi32
28
29 clean:
30 -rm -f *.o HookDll/*.o
31 -rm -f seamlessrdpshell.exe vchannel.dll HookDll/seamlessrdp.dll seamlessrdp.dll seamlessrdp.zip

  ViewVC Help
Powered by ViewVC 1.1.26