/[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 1073 - (show annotations)
Thu Mar 9 12:26:31 2006 UTC (18 years, 2 months ago) by ossman_
Original Path: sourceforge.net/trunk/seamlessrdp/ServerExe/Makefile
File size: 443 byte(s)
Put virtual channel handling into a separate file since both the DLL and
the main program will use it.

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

  ViewVC Help
Powered by ViewVC 1.1.26