/[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 1063 - (show annotations)
Wed Mar 8 09:53:32 2006 UTC (18 years, 3 months ago) by astrand
File size: 383 byte(s)
Added MinGW makefile

1
2 #
3 # MinGW makefile
4 #
5
6 CXX=g++
7
8 .SUFFIXES:
9
10 default: seamlessrdpshell.exe HookDll/hookdll.dll
11
12 HookDll/hook.o: HookDll/hook.cpp HookDll/hook.h
13 $(CXX) -c -o $@ $<
14
15 seamlessrdpshell.exe: main.cpp HookDll/hook.o
16 $(CXX) -o $@ $^ -lgdi32
17
18 HookDll/hookdll.dll: HookDll/hookdll.cpp
19 $(CXX) -shared -o $@ $^ -lwtsapi32
20
21 clean:
22 -rm *.exe *.o *.dll HookDll/*.exe HookDll/*.o HookDll/*.dll

  ViewVC Help
Powered by ViewVC 1.1.26