/[rdesktop]/sourceforge.net/trunk/seamlessrdp/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 /sourceforge.net/trunk/seamlessrdp/ServerExe/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1069 - (show annotations)
Thu Mar 9 09:46:30 2006 UTC (18 years, 2 months ago) by ossman_
File size: 283 byte(s)
Use C instead of C++ since we don't depend on any C++ features anyway.

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

  ViewVC Help
Powered by ViewVC 1.1.26