summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/samples/simpledll/jamfile
blob: 30704e68d71137260170a106fa18d2adea940bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

Dll dll.dll : dll.c ;

ImportLib libdll.a : dll.def ;


Main exe.exe : exe.c ;

LinkLibraries exe.exe : libdll.a ;

DEPENDS exe.exe : dll.dll ;

LINKFLAGS on exe.exe = $(LINKFLAGS) -L. ;