Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jamfile « simpledll « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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. ;